From b9c176910c14c1448893cf5f1d6953ca4cbc283e Mon Sep 17 00:00:00 2001 From: senator Date: Mon, 21 Feb 2011 15:23:02 -0500 Subject: [PATCH] berick spotted it. double escaping. --- Open-ILS/web/templates/default/opac/parts/result/table.tt2 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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); -- 2.11.0