diff options
author | mkanat%bugzilla.org <> | 2009-08-06 17:02:47 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-08-06 17:02:47 +0200 |
commit | c048675731f016f0b4b7eb1b901ad0c3d8dd69dd (patch) | |
tree | ce860df6342dd3d04c4da9c340dcfbb73bf1c746 /template/en/default/bug/process | |
parent | c427a6f710a60ffbca41b3cca62de949f1407059 (diff) | |
download | bugzilla-c048675731f016f0b4b7eb1b901ad0c3d8dd69dd.tar.gz bugzilla-c048675731f016f0b4b7eb1b901ad0c3d8dd69dd.tar.xz |
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/process')
-rw-r--r-- | template/en/default/bug/process/midair.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/bug/process/midair.html.tmpl b/template/en/default/bug/process/midair.html.tmpl index ed3be74d3..6e0458f24 100644 --- a/template/en/default/bug/process/midair.html.tmpl +++ b/template/en/default/bug/process/midair.html.tmpl @@ -45,7 +45,7 @@ <p> Someone else has made changes to - [%+ "$terms.bug $bug.id" FILTER bug_link(bug.id) FILTER none %] + [%+ "$terms.bug $bug.id" FILTER bug_link(bug) FILTER none %] at the same time you were trying to. The changes made were: </p> @@ -101,7 +101,7 @@ You have the following choices: [% END %] <li> Throw away my changes, and - [%+ "revisit $terms.bug $bug.id" FILTER bug_link(bug.id) FILTER none %] + [%+ "revisit $terms.bug $bug.id" FILTER bug_link(bug) FILTER none %] </li> </ul> |