diff options
author | cyeh%bluemartini.com <> | 2000-08-12 10:14:25 +0200 |
---|---|---|
committer | cyeh%bluemartini.com <> | 2000-08-12 10:14:25 +0200 |
commit | 52aae0f4ef531768e1eaab632e0aadd6d3ac66da (patch) | |
tree | 776cf32a26ad0ffee7644de014a63a251aab66ca | |
parent | 58b7634dcb93d2efe154113662840891d4799f3b (diff) | |
download | bugzilla-52aae0f4ef531768e1eaab632e0aadd6d3ac66da.tar.gz bugzilla-52aae0f4ef531768e1eaab632e0aadd6d3ac66da.tar.xz |
fix for bug #44691, patch submitted by jmrobins@tgix.com (Joe Robins)
-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)); |