diff options
| author | Nathan Kinkade <nath@nkinka.de> | 2012-11-14 18:02:28 +0000 |
|---|---|---|
| committer | Nathan Kinkade <nath@nkinka.de> | 2012-11-14 18:02:28 +0000 |
| commit | a523b5bb6289e7c5077a972f5a53e40f69cc854c (patch) | |
| tree | 3beeb82fa37d9b7fdf9b119778cc1f58f6b75da0 | |
| parent | 5648f135010855ecb97662edae4522c23de6769b (diff) | |
Don't escape the query_string because it munges the URL.
| -rw-r--r-- | templates/food_search.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/food_search.tpl b/templates/food_search.tpl index 9b41c02..4c488e7 100644 --- a/templates/food_search.tpl +++ b/templates/food_search.tpl @@ -12,7 +12,7 @@ {if isset($searchResults)} <div style='margin-top: 2ex;'> The following items matched your search. - Select one, or <a href='index.php?{$smarty.server.QUERY_STRING|escape:"url"}'>refine your search</a>. + Select one, or <a href='index.php?{$smarty.server.QUERY_STRING}'>refine your search</a>. </div> <div style='margin-top: 2ex;'> {if $sortType == "Category"} @@ -52,7 +52,7 @@ <span class='msgError'>No items matched your search.</span><br /> </div> <div> - Would you like to <a href='index.php?{$smarty.server.QUERY_STRING|escape:"url"}'>refine your search</a>? + Would you like to <a href='index.php?{$smarty.server.QUERY_STRING}'>refine your search</a>? </div> <div> Don't understand the search options? See the <a href='faq.php#searching'>help</a> on searching. |
