diff options
author | bugreport%peshkin.net <> | 2004-08-05 01:17:09 +0200 |
---|---|---|
committer | bugreport%peshkin.net <> | 2004-08-05 01:17:09 +0200 |
commit | b54625a0ef75f691220cdb319ea2eea3ec27e04a (patch) | |
tree | 7f70ef296d34cb34c4d7b1017351253e7e1f8dc8 /showdependencygraph.cgi | |
parent | 50e28bb8a4d457bf63f477b44df06adb22a71b59 (diff) | |
download | bugzilla-b54625a0ef75f691220cdb319ea2eea3ec27e04a.tar.gz bugzilla-b54625a0ef75f691220cdb319ea2eea3ec27e04a.tar.xz |
Bug 186093: Move CanSeeBug to User.pm and make User.pm usable by templates
r=kiko
a=justdave
Diffstat (limited to 'showdependencygraph.cgi')
-rwxr-xr-x | showdependencygraph.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi index b11562e1e..0d33d316d 100755 --- a/showdependencygraph.cgi +++ b/showdependencygraph.cgi @@ -170,7 +170,7 @@ foreach my $k (keys(%seen)) { $summary ||= ''; # Resolution and summary are shown only if user can see the bug - if (!CanSeeBug($k, $::userid)) { + if (!Bugzilla->user->can_see_bug($k)) { $resolution = $summary = ''; } |