From: cyeh%bluemartini.com <> Date: Sat, 12 Aug 2000 08:14:25 +0000 (+0000) Subject: fix for bug #44691, patch submitted by jmrobins@tgix.com (Joe Robins) X-Git-Tag: bugzilla-2.12~210 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52aae0f4ef531768e1eaab632e0aadd6d3ac66da;p=thirdparty%2Fbugzilla.git fix for bug #44691, patch submitted by jmrobins@tgix.com (Joe Robins) --- diff --git a/editproducts.cgi b/editproducts.cgi index abbf8fde8d..3f8d821421 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));