diff options
author | ivan <ivan> | 2002-02-25 19:09:43 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-02-25 19:09:43 +0000 |
commit | bc8ce86aaf207f2fb89054020873bbff79489642 (patch) | |
tree | 1311c42728f6fc8150fa9aee5e6a5fef450df8a6 /httemplate/search/svc_acct.cgi | |
parent | 00f2fdb5c3c9edfe446cf453ee33b9ebc7802925 (diff) |
keith@landel:
We have users that have the character "." in their username
we can't search these customers by Username, can you please fix.
Diffstat (limited to 'httemplate/search/svc_acct.cgi')
-rwxr-xr-x | httemplate/search/svc_acct.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/search/svc_acct.cgi b/httemplate/search/svc_acct.cgi index 0918275d7..dd0221d9a 100755 --- a/httemplate/search/svc_acct.cgi +++ b/httemplate/search/svc_acct.cgi @@ -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}) ]; |