diff options
author | David Lawrence <dlawrence@mozilla.com> | 2011-10-05 00:25:23 +0200 |
---|---|---|
committer | David Lawrence <dlawrence@mozilla.com> | 2011-10-05 00:25:23 +0200 |
commit | 57584dc4744fea59833ef355f7513690d246c70f (patch) | |
tree | 805f2b2941eca17eaf97263165d11d9e676ad9d1 /extensions/ComponentWatching/template/en/default/account | |
parent | 785580c6c290b93fe25868cfbb5d4e300749de62 (diff) | |
download | bugzilla-57584dc4744fea59833ef355f7513690d246c70f.tar.gz bugzilla-57584dc4744fea59833ef355f7513690d246c70f.tar.xz |
more porting work
Diffstat (limited to 'extensions/ComponentWatching/template/en/default/account')
-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 c3247078a..057a32e36 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 FILTER uri %]_[% watch.component.id FILTER uri %]" value="1"></td> + <td><input type="checkbox" name="del_[% watch.product.id %]_[% watch.component.id %]" value="1"></td> <td>[% watch.component.product.name FILTER html %]</td> <td> - <a href="buglist.cgi?product=[% watch.product.name FILTER uri -%] - &component=[% watch.component.name FILTER uri %]&resolution=---"> + <a href="buglist.cgi?product=[% watch.product.name FILTER url ~%] + &component=[% watch.component.name FILTER url %]&resolution=---"> [% watch.component.name FILTER html %] </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 %]" 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 url %]"> __Any__ </a> </td> |