diff options
author | cyeh%bluemartini.com <> | 2000-08-12 08:14:25 +0000 |
---|---|---|
committer | cyeh%bluemartini.com <> | 2000-08-12 08:14:25 +0000 |
commit | 52aae0f4ef531768e1eaab632e0aadd6d3ac66da (patch) | |
tree | 776cf32a26ad0ffee7644de014a63a251aab66ca /editproducts.cgi | |
parent | Re-fixing bug 46897. Thanks to JRobertson@medevolve.com for catching the (diff) | |
download | bugzilla-52aae0f4ef531768e1eaab632e0aadd6d3ac66da.tar.gz bugzilla-52aae0f4ef531768e1eaab632e0aadd6d3ac66da.tar.bz2 bugzilla-52aae0f4ef531768e1eaab632e0aadd6d3ac66da.zip |
fix for bug #44691, patch submitted by jmrobins@tgix.com (Joe Robins)
Diffstat (limited to 'editproducts.cgi')
-rwxr-xr-x | editproducts.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editproducts.cgi b/editproducts.cgi index abbf8fde8..3f8d82142 100755 --- a/editproducts.cgi +++ b/editproducts.cgi @@ -385,7 +385,7 @@ if ($action eq 'new') { push @login_list, $this_login; } foreach $this_login (@login_list) { - if($this_login =~ /$userregexp/) { + if($this_login =~ /$userregexp/i) { SendSQL("UPDATE profiles " . "SET groupset = groupset | " . $bit . " " . "WHERE login_name = " . SqlQuote($this_login)); |