diff options
author | cyeh%bluemartini.com <> | 2000-06-24 01:03:46 +0000 |
---|---|---|
committer | cyeh%bluemartini.com <> | 2000-06-24 01:03:46 +0000 |
commit | 8eb2d6ffa3b01ff437f1726fb17b0a326ede653d (patch) | |
tree | 46bc742967cfaf1dff12bb799e2d956a874775ea /editusers.cgi | |
parent | fix subject on confirmation mail (diff) | |
download | bugzilla-8eb2d6ffa3b01ff437f1726fb17b0a326ede653d.tar.gz bugzilla-8eb2d6ffa3b01ff437f1726fb17b0a326ede653d.tar.bz2 bugzilla-8eb2d6ffa3b01ff437f1726fb17b0a326ede653d.zip |
checkin to fix Bug 25010 "Need a way to edit the list of available groups".
Patches and work contributed by dave@intrec.com (Dave Miller).
Some cleanup work needs to be done with regards to permissions and bit-twiddling
see other bugs that are dependent on 25010 for details.
Diffstat (limited to 'editusers.cgi')
-rwxr-xr-x | editusers.cgi | 35 |
1 files changed, 22 insertions, 13 deletions
diff --git a/editusers.cgi b/editusers.cgi index 1b5d396a7..92ba42fa6 100755 --- a/editusers.cgi +++ b/editusers.cgi @@ -253,19 +253,27 @@ List users with login name matching: if ($action eq 'list') { PutHeader("Select user"); - my $query = "SELECT login_name,realname,disabledtext " . - "FROM profiles WHERE login_name "; - if ($::FORM{'matchtype'} eq 'substr') { - $query .= "like"; - $::FORM{'matchstr'} = '%' . $::FORM{'matchstr'} . '%'; - } elsif ($::FORM{'matchtype'} eq 'regexp') { - $query .= "regexp"; - } elsif ($::FORM{'matchtype'} eq 'notregexp') { - $query .= "not regexp"; + my $query = ""; + if (exists $::FORM{'matchtype'}) { + $query = "SELECT login_name,realname,disabledtext " . + "FROM profiles WHERE login_name "; + if ($::FORM{'matchtype'} eq 'substr') { + $query .= "like"; + $::FORM{'matchstr'} = '%' . $::FORM{'matchstr'} . '%'; + } elsif ($::FORM{'matchtype'} eq 'regexp') { + $query .= "regexp"; + } elsif ($::FORM{'matchtype'} eq 'notregexp') { + $query .= "not regexp"; + } else { + die "Unknown match type"; + } + $query .= SqlQuote($::FORM{'matchstr'}) . " ORDER BY login_name"; + } elsif (exists $::FORM{'query'}) { + $query = "SELECT login_name,realname,disabledtext " . + "FROM profiles WHERE " . $::FORM{'query'} . " ORDER BY login_name"; } else { - die "Unknown match type"; + die "Missing parameters"; } - $query .= SqlQuote($::FORM{'matchstr'}) . " ORDER BY login_name"; SendSQL($query); my $count = 0; @@ -446,7 +454,7 @@ if ($action eq 'del') { CheckUser($user); # display some data about the user - SendSQL("SELECT realname, groupset, emailnotification, login_name + SendSQL("SELECT realname, groupset, emailnotification FROM profiles WHERE login_name=" . SqlQuote($user)); my ($realname, $groupset, $emailnotification) = FetchSQLData(); @@ -478,7 +486,8 @@ if ($action eq 'del') { my $found = 0; while ( MoreSQLData() ) { my ($bit,$name) = FetchSQLData(); - if ($bit & $groupset) { + my $cmpr = $bit & $groupset; + if ($cmpr) { print "<br>\n" if $found; print ucfirst $name; $found = 1; |