From: senator Date: Mon, 21 Feb 2011 20:23:02 +0000 (-0500) Subject: berick spotted it. double escaping. X-Git-Tag: sprint4-merge-nov22~5128^2~72^2~195 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=b9c176910c14c1448893cf5f1d6953ca4cbc283e;p=working%2FEvergreen.git berick spotted it. double escaping. --- diff --git a/Open-ILS/web/templates/default/opac/parts/result/table.tt2 b/Open-ILS/web/templates/default/opac/parts/result/table.tt2 index b08dabe182..d8fa0263ec 100644 --- a/Open-ILS/web/templates/default/opac/parts/result/table.tt2 +++ b/Open-ILS/web/templates/default/opac/parts/result/table.tt2 @@ -1,7 +1,6 @@ [% PROCESS "default/opac/parts/marc_misc.tt2"; - q = query_string | url; - np_link = '?' _ q; + np_link = '?' _ query_string; ctx.result_start = 1 + ctx.page_size * page; ctx.result_stop = 1 + ctx.page_size * (page + 1);