TPac: Do not URI-escape index class/names in search dropdown
authorBill Erickson <berick@esilibrary.com>
Mon, 12 Sep 2011 16:17:52 +0000 (12:17 -0400)
committerBill Erickson <berick@esilibrary.com>
Mon, 12 Sep 2011 16:17:52 +0000 (12:17 -0400)
id|bibcn, for example, through the |uri filter turns into "id%7Cbibcn"
in the option value.  Pipe through |html instead, just to be safe.

Signed-off-by: Bill Erickson <berick@esilibrary.com>
Open-ILS/src/templates/opac/parts/qtype_selector.tt2

index 4b91a47..5089606 100644 (file)
@@ -9,7 +9,7 @@
 <select name="qtype">
     [%  query_type = query_type || CGI.param('qtype');
         FOR qt IN query_types -%]
-    <option value='[% qt.value | uri %]'[%
+    <option value='[% qt.value | html %]'[%
         query_type == qt.value ? ' selected="selected"' : ''
     %]>[% qt.label | html %]</option>
     [% END -%]