Just starting to play with 2.22 and noticed that in all places but one,
it's "Username" instead of "User name".  Also, if the password contains
invalid characters, the message states that the "User name" contains
illegal characters.  A patch for both problems is included below:

--- reg_system.cgi~     Tue Nov 21 23:29:52 2000
+++ reg_system.cgi      Tue Nov 21 23:30:11 2000
@@ -1320,7 +1320,7 @@
     #
     if (checkStringEncoding (String => $reg_username, EncodingType => 
$in{encoding_type}) == 1)
     {
-       error_out ("User name contains illegal characters 1.");
+       error_out ("Username contains illegal characters.");
        exit;
     }
 
@@ -1330,7 +1330,7 @@
     #
     if (checkStringEncoding (String => $reg_password, EncodingType => 
$in{encoding_type}) == 1)
     {
-       error_out ("User name contains illegal characters 2.");
+       error_out ("Password contains illegal characters.");
        exit;
     }
 

Reply via email to