diff options
author | mkanat%bugzilla.org <> | 2009-08-06 15:02:47 +0000 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-08-06 15:02:47 +0000 |
commit | c048675731f016f0b4b7eb1b901ad0c3d8dd69dd (patch) | |
tree | ce860df6342dd3d04c4da9c340dcfbb73bf1c746 /template/en/default/bug/activity | |
parent | c427a6f710a60ffbca41b3cca62de949f1407059 (diff) | |
download | bugs-c048675731f016f0b4b7eb1b901ad0c3d8dd69dd.tar bugs-c048675731f016f0b4b7eb1b901ad0c3d8dd69dd.tar.gz bugs-c048675731f016f0b4b7eb1b901ad0c3d8dd69dd.tar.bz2 bugs-c048675731f016f0b4b7eb1b901ad0c3d8dd69dd.tar.xz bugs-c048675731f016f0b4b7eb1b901ad0c3d8dd69dd.zip |
Bug 508737: Allow Bugzilla::Template::get_bug_link to take a Bugzilla::Bug object if one is available
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'template/en/default/bug/activity')
-rw-r--r-- | template/en/default/bug/activity/show.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/bug/activity/show.html.tmpl b/template/en/default/bug/activity/show.html.tmpl index a457df018..67ac689ca 100644 --- a/template/en/default/bug/activity/show.html.tmpl +++ b/template/en/default/bug/activity/show.html.tmpl @@ -35,14 +35,14 @@ %] <p> - [% "Back to $terms.bug $bug.bug_id" FILTER bug_link(bug.bug_id) FILTER none %] + [% "Back to $terms.bug $bug.bug_id" FILTER bug_link(bug) FILTER none %] </p> [% PROCESS bug/activity/table.html.tmpl %] [% IF operations.size > 0 %] <p> - [% "Back to $terms.bug $bug.bug_id" FILTER bug_link(bug.bug_id) FILTER none %] + [% "Back to $terms.bug $bug.bug_id" FILTER bug_link(bug) FILTER none %] </p> [% END %] |