]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
fix for bug #44691, patch submitted by jmrobins@tgix.com (Joe Robins)
authorcyeh%bluemartini.com <>
Sat, 12 Aug 2000 08:14:25 +0000 (08:14 +0000)
committercyeh%bluemartini.com <>
Sat, 12 Aug 2000 08:14:25 +0000 (08:14 +0000)
editproducts.cgi

index abbf8fde8d5912141947e62a03c4d07849f19f55..3f8d8214218b8c3682bf04112b4bfc8498f88394 100755 (executable)
@@ -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));