diff options
author | Byron Jones <bjones@mozilla.com> | 2012-02-13 16:36:05 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2012-02-13 16:36:05 +0100 |
commit | 88e0ac4cb8bd8932005341e47ee7310a956366d7 (patch) | |
tree | a5b6b0a2d8a430b2334b560d1edf767445486d2b /extensions/ComponentWatching/template | |
parent | 40f3f69f9abc0c8cd3e0b4f6fbb445227e7fd370 (diff) | |
download | bugzilla-88e0ac4cb8bd8932005341e47ee7310a956366d7.tar.gz bugzilla-88e0ac4cb8bd8932005341e47ee7310a956366d7.tar.xz |
Bug 725923: backport bug 663835 to extend test coverage to extensions
Diffstat (limited to 'extensions/ComponentWatching/template')
-rw-r--r-- | extensions/ComponentWatching/template/en/default/account/prefs/component_watch.html.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/ComponentWatching/template/en/default/account/prefs/component_watch.html.tmpl b/extensions/ComponentWatching/template/en/default/account/prefs/component_watch.html.tmpl index 225cca3bb..dd2fb0560 100644 --- a/extensions/ComponentWatching/template/en/default/account/prefs/component_watch.html.tmpl +++ b/extensions/ComponentWatching/template/en/default/account/prefs/component_watch.html.tmpl @@ -113,7 +113,7 @@ You are currently watching: [% FOREACH watch IN watches %] <tr> [% IF (watch.component) %] - <td><input type="checkbox" name="del_[% watch.product.id FILTER uri %]_[% watch.component.id FILTER uri %]" value="1"></td> + <td><input type="checkbox" name="del_[% watch.product.id FILTER html %]_[% watch.component.id FILTER html %]" value="1"></td> <td>[% watch.component.product.name FILTER html %]</td> <td> <a href="buglist.cgi?product=[% watch.product.name FILTER uri ~%] @@ -122,10 +122,10 @@ You are currently watching: </a> </td> [% ELSE %] - <td><input type="checkbox" name="del_[% watch.product.id FILTER uri %]" value="1"></td> + <td><input type="checkbox" name="del_[% watch.product.id FILTER html %]" value="1"></td> <td>[% watch.product.name FILTER html %]</td> <td> - <a href="describecomponents.cgi?product=[% watch.product.name FILTER uri %]"> + <a href="describecomponents.cgi?product=[% watch.product.name FILTER html %]"> __Any__ </a> </td> |