diff options
author | Byron Jones <glob@mozilla.com> | 2015-06-10 05:28:24 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-06-10 05:28:24 +0200 |
commit | 5ef264450d03ff5ce3f93ffa3ed97fc977b3ea93 (patch) | |
tree | ee2ad117c0d454780bdff355cedeb0ba3f02c120 /Bugzilla | |
parent | 5df55b726500ff05999777984d470d63201324cb (diff) | |
download | bugzilla-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')
-rw-r--r-- | Bugzilla/Bug.pm | 1 |
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; } |