diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2012-08-09 13:45:59 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-08-09 13:45:59 +0200 |
commit | 9ec7d139f9ab26fc2cc6986ec72d254d0fdef242 (patch) | |
tree | f151e0e128b4e93e1f631a002c621a345c43053a /show_bug.cgi | |
parent | 17a866fde027a1236cfadc7829d0176a60dc4b51 (diff) | |
download | bugzilla-9ec7d139f9ab26fc2cc6986ec72d254d0fdef242.tar.gz bugzilla-9ec7d139f9ab26fc2cc6986ec72d254d0fdef242.tar.xz |
Bug 756550: Do not link a bug alias with its bug ID for bugs you cannot see
r=glob a=LpSolit
Diffstat (limited to 'show_bug.cgi')
-rwxr-xr-x | show_bug.cgi | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/show_bug.cgi b/show_bug.cgi index 0da4c4842..48d75512b 100755 --- a/show_bug.cgi +++ b/show_bug.cgi @@ -13,8 +13,7 @@ use lib qw(. lib); use Bugzilla; use Bugzilla::Constants; use Bugzilla::Error; -use Bugzilla::User; -use Bugzilla::Keyword; +use Bugzilla::Util; use Bugzilla::Bug; my $cgi = Bugzilla->cgi; @@ -38,7 +37,7 @@ if (!$cgi->param('id') && $single) { my $format = $template->get_format("bug/show", scalar $cgi->param('format'), scalar $cgi->param('ctype')); -my @bugs; +my (@bugs, @illegal_bugs); my %marks; # If the user isn't logged in, we use data from the shadow DB. If he plans @@ -64,22 +63,23 @@ if ($single) { foreach my $id ($cgi->param('id')) { # Be kind enough and accept URLs of the form: id=1,2,3. my @ids = split(/,/, $id); - foreach (@ids) { - my $bug = new Bugzilla::Bug($_); - # This is basically a backwards-compatibility hack from when - # Bugzilla::Bug->new used to set 'NotPermitted' if you couldn't - # see the bug. - if (!$bug->{error} && !$user->can_see_bug($bug->bug_id)) { - $bug->{error} = 'NotPermitted'; + foreach my $bug_id (@ids) { + next unless $bug_id; + my $bug = new Bugzilla::Bug($bug_id); + if (!$bug->{error} && $user->can_see_bug($bug->bug_id)) { + push(@bugs, $bug); + } + else { + push(@illegal_bugs, { bug_id => trim($bug_id), + error => $bug->{error} || 'NotPermitted' }); } - push(@bugs, $bug); } } } Bugzilla::Bug->preload(\@bugs); -$vars->{'bugs'} = \@bugs; +$vars->{'bugs'} = [@bugs, @illegal_bugs]; $vars->{'marks'} = \%marks; my @bugids = map {$_->bug_id} grep {!$_->error} @bugs; |