keith@landel:
authorivan <ivan>
Mon, 25 Feb 2002 19:09:43 +0000 (19:09 +0000)
committerivan <ivan>
Mon, 25 Feb 2002 19:09:43 +0000 (19:09 +0000)
    We have users that have the character "." in their username
    we can't search these customers by Username, can you please fix.

httemplate/search/svc_acct.cgi

index 0918275..dd0221d 100755 (executable)
@@ -234,7 +234,7 @@ sub uid_sort {
 
 sub usernamesearch {
 
-  $cgi->param('username') =~ /^([\w\d\-]+)$/; #untaint username_text
+  $cgi->param('username') =~ /^([\w\-\.\&]+)$/; #untaint username_text
   my($username)=$1;
 
   [ qsearch('svc_acct',{'username'=>$username}) ];