diff options
author | David Lawrence <dlawrence@mozilla.com> | 2011-10-05 00:43:47 +0200 |
---|---|---|
committer | David Lawrence <dlawrence@mozilla.com> | 2011-10-05 00:43:47 +0200 |
commit | befdcc8f9a30f55e91227bac0ee1813a661002b3 (patch) | |
tree | 34daa9fe986e9cc42e803f6dc8b382e2f05feb4a /extensions/ComponentWatching | |
parent | 8592e84f5d251a284f09fae2947101715e094a78 (diff) | |
download | bugzilla-befdcc8f9a30f55e91227bac0ee1813a661002b3.tar.gz bugzilla-befdcc8f9a30f55e91227bac0ee1813a661002b3.tar.xz |
more porting work
Diffstat (limited to 'extensions/ComponentWatching')
-rw-r--r-- | extensions/ComponentWatching/template/en/default/account/prefs/component_watch.html.tmpl | 10 |
1 files changed, 5 insertions, 5 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 057a32e36..225cca3bb 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,19 +113,19 @@ You are currently watching: [% FOREACH watch IN watches %] <tr> [% IF (watch.component) %] - <td><input type="checkbox" name="del_[% watch.product.id %]_[% watch.component.id %]" value="1"></td> + <td><input type="checkbox" name="del_[% watch.product.id FILTER uri %]_[% watch.component.id FILTER uri %]" value="1"></td> <td>[% watch.component.product.name FILTER html %]</td> <td> - <a href="buglist.cgi?product=[% watch.product.name FILTER url ~%] - &component=[% watch.component.name FILTER url %]&resolution=---"> + <a href="buglist.cgi?product=[% watch.product.name FILTER uri ~%] + &component=[% watch.component.name FILTER uri %]&resolution=---"> [% watch.component.name FILTER html %] </a> </td> [% ELSE %] - <td><input type="checkbox" name="del_[% watch.product.id %]" value="1"></td> + <td><input type="checkbox" name="del_[% watch.product.id FILTER uri %]" value="1"></td> <td>[% watch.product.name FILTER html %]</td> <td> - <a href="describecomponents.cgi?product=[% watch.product.name FILTER url %]"> + <a href="describecomponents.cgi?product=[% watch.product.name FILTER uri %]"> __Any__ </a> </td> |