# HG changeset patch # User Eris Caffee # Date 1310871878 18000 # Node ID 6adfd593a32b0340ce69f4274a6935e235e3fed0 # Parent 706c20861682d2f1885cc435fd9919fc9d83e914 removed lowercase requirement for first letter of username diff -r 706c20861682 -r 6adfd593a32b make-username.pl --- a/make-username.pl Sat Jul 16 13:23:21 2011 -0500 +++ b/make-username.pl Sat Jul 16 22:04:38 2011 -0500 @@ -89,7 +89,7 @@ # Remove non-alpha-numeric characters and make sure the first character is a letter. $base =~ s/[^A-Za-z0-9]//g; - if ($base !~ /^[a-z]/ ) { + if ($base !~ /^[A-Za-z]/ ) { $base = "a".$base; }