Commit a4436861 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 471890: The Index of Parameters should linkify parameters, not the category…

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
parent 2bb9902f
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
# Rights Reserved. # Rights Reserved.
# #
# Contributor(s): Frédéric Buclin <LpSolit@gmail.com> # Contributor(s): Frédéric Buclin <LpSolit@gmail.com>
# Nitish Bezzala <nbezzala@yahoo.com>
#%] #%]
<p> <p>
...@@ -32,11 +33,13 @@ ...@@ -32,11 +33,13 @@
[% FOREACH panel = panels %] [% FOREACH panel = panels %]
[% FOREACH param = panel.param_list.sort('name') %] [% FOREACH param = panel.param_list.sort('name') %]
<tr> <tr>
<td>[% param.name FILTER html %]</td>
<td> <td>
<a href="editparams.cgi?section= <a href="editparams.cgi?section=
[%- panel.name FILTER url_quote %]#[% param.name FILTER url_quote %]"> [%- panel.name FILTER url_quote %]#[% param.name FILTER url_quote %]">
[% panel.title FILTER html %]</a> [% param.name FILTER html %]</a>
</td>
<td>
[% panel.title FILTER html %]
</td> </td>
</tr> </tr>
[% 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