Bug 24496 part 2: fix burning tinderbox - a couple filters were left out.

parent 39a329b9
......@@ -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 %]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment