]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 471890: The Index of Parameters should linkify parameters, not the category they...
authorlpsolit%gmail.com <>
Thu, 15 Jan 2009 00:53:22 +0000 (00:53 +0000)
committerlpsolit%gmail.com <>
Thu, 15 Jan 2009 00:53:22 +0000 (00:53 +0000)
template/en/default/admin/params/index.html.tmpl

index bfa3e2c43da4b77616debf09e4a47bf253f6f4d8..1629c8c6fdc88b90025046d9b6c5ced8018c6ac5 100644 (file)
@@ -16,6 +16,7 @@
   # Rights Reserved.
   #
   # Contributor(s): Frédéric Buclin <LpSolit@gmail.com>
+  #                 Nitish Bezzala <nbezzala@yahoo.com>
   #%]
 
 <p>
     [% 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 %]