diff options
author | 2011-08-30 01:09:48 +0200 | |
---|---|---|
committer | 2011-08-30 01:09:48 +0200 | |
commit | c7ae62abc997881fbc7fbadf4aa662bcc294ff2e (patch) | |
tree | 80847f6e63855f96e2e6b8e1ac49b86b175c6f7b /editusers.cgi | |
parent | Bug 629529: Make SQLite installs able to use jobqueue.pl (diff) | |
download | bugzilla-c7ae62abc997881fbc7fbadf4aa662bcc294ff2e.tar.gz bugzilla-c7ae62abc997881fbc7fbadf4aa662bcc294ff2e.tar.bz2 bugzilla-c7ae62abc997881fbc7fbadf4aa662bcc294ff2e.zip |
Bug 682747: Wrong check in editusers.cgi
r/a=mkanat
Diffstat (limited to 'editusers.cgi')
-rwxr-xr-x | editusers.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editusers.cgi b/editusers.cgi index 2efdd01c8..12c4dc230 100755 --- a/editusers.cgi +++ b/editusers.cgi @@ -137,7 +137,7 @@ if ($action eq 'search') { $expr = "profiles.login_name"; } - if ($matchstr =~ /^(regexp|notregexp|exact)$/) { + if ($matchtype =~ /^(regexp|notregexp|exact)$/) { $matchstr ||= '.'; } else { |