summaryrefslogtreecommitdiffstats
path: root/process_bug.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-xprocess_bug.cgi17
1 files changed, 17 insertions, 0 deletions
diff --git a/process_bug.cgi b/process_bug.cgi
index 8e93e3f09..e92ec5acf 100755
--- a/process_bug.cgi
+++ b/process_bug.cgi
@@ -99,6 +99,23 @@ sub BugInGroupId {
return $in_group;
}
+# This function checks if there are any default groups defined.
+# If so, then groups may have to be changed when bugs move from
+# one bug to another.
+sub AnyDefaultGroups {
+ my $dbh = Bugzilla->dbh;
+ my $any_default =
+ $dbh->selectrow_array('SELECT 1
+ FROM group_control_map
+ INNER JOIN groups
+ ON groups.id = group_control_map.group_id
+ WHERE isactive != 0
+ AND (membercontrol = ? OR othercontrol = ?) ' .
+ $dbh->sql_limit(1),
+ undef, (CONTROLMAPDEFAULT, CONTROLMAPDEFAULT));
+ return $any_default;
+}
+
######################################################################
# Begin Data/Security Validation
######################################################################