summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2015-06-10 05:28:24 +0200
committerByron Jones <glob@mozilla.com>2015-06-10 05:28:24 +0200
commit5ef264450d03ff5ce3f93ffa3ed97fc977b3ea93 (patch)
treeee2ad117c0d454780bdff355cedeb0ba3f02c120 /Bugzilla/Bug.pm
parent5df55b726500ff05999777984d470d63201324cb (diff)
downloadbugzilla-5ef264450d03ff5ce3f93ffa3ed97fc977b3ea93.tar.gz
bugzilla-5ef264450d03ff5ce3f93ffa3ed97fc977b3ea93.tar.xz
Bug 1173235: "Can't call method "id" without a package or object reference" when viewing a security bug
Diffstat (limited to 'Bugzilla/Bug.pm')
-rw-r--r--Bugzilla/Bug.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index d105dd005..bbd4d1087 100644
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -3913,6 +3913,7 @@ sub groups_in {
sub in_group {
my ($self, $group) = @_;
+ print STDERR 'bug ' . $self->id . " (" . $group->name . ")\n";
return grep($_->id == $group->id, @{$self->groups_in}) ? 1 : 0;
}