summaryrefslogtreecommitdiffstats
path: root/Bugzilla/User.pm
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2009-04-06 22:02:51 +0200
committerlpsolit%gmail.com <>2009-04-06 22:02:51 +0200
commit1633d9835c4ab45d583ba4b6d8b585d66925a5b2 (patch)
treea59da1c5899387fc43a553a41810e2fe4aea1bc4 /Bugzilla/User.pm
parent2ee6d9a1b8ebde208a1ff11e97c909925fe87303 (diff)
downloadbugzilla-1633d9835c4ab45d583ba4b6d8b585d66925a5b2.tar.gz
bugzilla-1633d9835c4ab45d583ba4b6d8b585d66925a5b2.tar.xz
Bug 486881: A powerless user can still see a restricted bug when he removes all his roles related to the bug - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'Bugzilla/User.pm')
-rw-r--r--Bugzilla/User.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm
index 74289fe56..cf4cb5fa6 100644
--- a/Bugzilla/User.pm
+++ b/Bugzilla/User.pm
@@ -588,6 +588,8 @@ sub visible_bugs {
# We only check the visibility of bugs that we haven't
# checked yet.
+ # Bugzilla::Bug->update automatically removes updated bugs
+ # from the cache to force them to be checked again.
my $visible_cache = $self->{_visible_bugs_cache} ||= {};
my @check_ids = grep(!exists $visible_cache->{$_}, @bug_ids);