summaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2004-03-18 15:31:14 +0100
committerjustdave%syndicomm.com <>2004-03-18 15:31:14 +0100
commit71619eca319e21397e034c19b838408000682c30 (patch)
tree0d84aa150b8c8a6b8d2dc054b5acccdbd261651d /template
parent39a329b9ac46424a4552e8c68e44467173a8238c (diff)
downloadbugzilla-71619eca319e21397e034c19b838408000682c30.tar.gz
bugzilla-71619eca319e21397e034c19b838408000682c30.tar.xz
Bug 24496 part 2: fix burning tinderbox - a couple filters were left out.
Diffstat (limited to 'template')
-rw-r--r--template/en/default/global/user-error.html.tmpl10
1 files changed, 5 insertions, 5 deletions
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl
index 3bbca0cec..9f01f44a0 100644
--- a/template/en/default/global/user-error.html.tmpl
+++ b/template/en/default/global/user-error.html.tmpl
@@ -668,27 +668,27 @@
[% ELSIF error == "still_unresolved_bugs" %]
[% IF dependency_count == 1 %]
- [% terms.Bug %]# <a href="show_bug.cgi?id=[% dependencies.0.bug_id %]">[% dependencies.0.bug_id %]</a>
+ [% terms.Bug %]# <a href="show_bug.cgi?id=[% dependencies.0.bug_id FILTER none %]">[% dependencies.0.bug_id FILTER none %]</a>
has still [% dependencies.0.dependencies FILTER html %] unresolved
[% IF dependencies.0.dependencies == 1 %]
dependency
[% ELSE %]
dependencies
[% END %]. Show
- <a href="showdependencytree.cgi?id=[% dependencies.0.bug_id %]">Dependency Tree</a>.
+ <a href="showdependencytree.cgi?id=[% dependencies.0.bug_id FILTER none %]">Dependency Tree</a>.
[% ELSE %]
- There are [% dependency_count %] open [% terms.bugs %] which
+ There are [% dependency_count FILTER none %] open [% terms.bugs %] which
have unresolved dependencies.
<br>
[% FOREACH bug = dependencies %]
- [% terms.Bug %]# <a href="show_bug.cgi?id=[% bug.bug_id %]">[% bug.bug_id %]</a>
+ [% terms.Bug %]# <a href="show_bug.cgi?id=[% bug.bug_id FILTER none %]">[% bug.bug_id FILTER none %]</a>
has [% bug.dependencies FILTER html %] open
[% IF bug.dependencies == 1 %]
dependency.
[% ELSE %]
dependencies.
[% END %]
- (<a href="showdependencytree.cgi?id=[% bug.bug_id %]">Dependency Tree</a>)<br>
+ (<a href="showdependencytree.cgi?id=[% bug.bug_id FILTER none %]">Dependency Tree</a>)<br>
[% END %]
[% END %]