Bug 233486: Only process groups user is supposed to be able to bless in editgroups.cgi
r=justdave a=justdave git-svn-id: svn://10.0.0.236/trunk@158979 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -155,7 +155,7 @@ sub EmitFormElements ($$$$)
|
||||
print "<TD COLSPAN=2 ALIGN=LEFT><B>User is a member of these groups</B></TD>\n";
|
||||
while (MoreSQLData()) {
|
||||
my ($groupid, $name, $description, $checked, $isderived, $isregexp) = FetchSQLData();
|
||||
next if (!$editall && !UserCanBlessGroup($name));
|
||||
next unless ($editall || UserCanBlessGroup($name));
|
||||
PushGlobalSQLState();
|
||||
SendSQL("SELECT user_id " .
|
||||
"FROM user_group_map " .
|
||||
@@ -762,6 +762,7 @@ if ($action eq 'update') {
|
||||
my $chggrp = 0;
|
||||
SendSQL("SELECT id, name FROM groups");
|
||||
while (my ($groupid, $name) = FetchSQLData()) {
|
||||
next unless ($editall || UserCanBlessGroup($name));
|
||||
if ($::FORM{"oldgroup_$groupid"} != ($::FORM{"group_$groupid"} ? 1 : 0)) {
|
||||
# group membership changed
|
||||
PushGlobalSQLState();
|
||||
|
||||
Reference in New Issue
Block a user