Bug 96290 - Include normal title in bug_processed title

git-svn-id: svn://svn.office.custis.ru/3rdparty/bugzilla.org/trunk@1533 6955db30-a419-402b-8a0d-67ecbb4d7f56
master
vfilippov 2012-05-02 12:38:10 +00:00
parent 0b262d3ece
commit 52d0f96fe6
1 changed files with 4 additions and 1 deletions

View File

@ -752,7 +752,10 @@ elsif (($action eq 'next_bug' or $action eq 'same_bug') && ($bug = $vars->{bug})
my $title;
if (scalar(@bug_objects) == 1)
{
$title = Bugzilla->messages->{terms}->{Bug} . ' ' . $bug_objects[0]->id . ' processed';
# FIXME hard-coded template title, also in bug/show-header.html.tmpl
$title = Bugzilla->messages->{terms}->{Bug} . ' ' . $bug_objects[0]->id . ' processed – ' .
$bug->short_desc . ' – ' . $bug->product . '/' . $bug->component . ' – ' .
$bug->bug_status . ' ' . $bug->resolution;
}
else
{