Commit 52aae0f4 authored by cyeh%bluemartini.com's avatar cyeh%bluemartini.com

fix for bug #44691, patch submitted by jmrobins@tgix.com (Joe Robins)

parent 58b7634d
...@@ -385,7 +385,7 @@ if ($action eq 'new') { ...@@ -385,7 +385,7 @@ if ($action eq 'new') {
push @login_list, $this_login; push @login_list, $this_login;
} }
foreach $this_login (@login_list) { foreach $this_login (@login_list) {
if($this_login =~ /$userregexp/) { if($this_login =~ /$userregexp/i) {
SendSQL("UPDATE profiles " . SendSQL("UPDATE profiles " .
"SET groupset = groupset | " . $bit . " " . "SET groupset = groupset | " . $bit . " " .
"WHERE login_name = " . SqlQuote($this_login)); "WHERE login_name = " . SqlQuote($this_login));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment