diff options
author | lpsolit%gmail.com <> | 2009-01-15 01:53:22 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2009-01-15 01:53:22 +0100 |
commit | a4436861717d0fbdfdee364fee6a3e3b42a65f5c (patch) | |
tree | 8abf40bf877000bce554b6ec387f53a196f64f9e /template/en | |
parent | 2bb9902fc23e6bee049119e661ad488b76eaa874 (diff) | |
download | bugzilla-a4436861717d0fbdfdee364fee6a3e3b42a65f5c.tar.gz bugzilla-a4436861717d0fbdfdee364fee6a3e3b42a65f5c.tar.xz |
Bug 471890: The Index of Parameters should linkify parameters, not the category they belong to - Patch by Nitish Bezzala <nbezzala@yahoo.com> r/a=LpSolit
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/admin/params/index.html.tmpl | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/template/en/default/admin/params/index.html.tmpl b/template/en/default/admin/params/index.html.tmpl index bfa3e2c43..1629c8c6f 100644 --- a/template/en/default/admin/params/index.html.tmpl +++ b/template/en/default/admin/params/index.html.tmpl @@ -16,6 +16,7 @@ # Rights Reserved. # # Contributor(s): Frédéric Buclin <LpSolit@gmail.com> + # Nitish Bezzala <nbezzala@yahoo.com> #%] <p> @@ -32,11 +33,13 @@ [% FOREACH panel = panels %] [% FOREACH param = panel.param_list.sort('name') %] <tr> - <td>[% param.name FILTER html %]</td> <td> <a href="editparams.cgi?section= - [%- panel.name FILTER url_quote %]#[% param.name FILTER url_quote %]"> - [% panel.title FILTER html %]</a> + [%- panel.name FILTER url_quote %]#[% param.name FILTER url_quote %]"> + [% param.name FILTER html %]</a> + </td> + <td> + [% panel.title FILTER html %] </td> </tr> [% END %] |