From 5ef264450d03ff5ce3f93ffa3ed97fc977b3ea93 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Wed, 10 Jun 2015 11:28:24 +0800 Subject: Bug 1173235: "Can't call method "id" without a package or object reference" when viewing a security bug --- Bugzilla/Bug.pm | 1 + 1 file changed, 1 insertion(+) (limited to 'Bugzilla/Bug.pm') 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; } -- cgit v1.2.3-24-g4f1b