From d6e580439be3382af88aed5e3ba9f7e3e8876f0b Mon Sep 17 00:00:00 2001 From: Janusz Kaczmarek Date: Mon, 14 Mar 2011 07:21:47 +0100 Subject: [PATCH] Bug 5819 : No toolbar in record view when quotes present in title - fix Signed-off-by: Katrin Fischer Was able to reproduce problem by surrounding 245$a with "". Patch fixed the problem. Signed-off-by: Chris Cormack --- koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc index 8d4e02e024..1c5b20fb71 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/cat-toolbar.inc @@ -15,7 +15,7 @@ function GetZ3950Terms(){ var strQuery="&frameworkcode="; - strQuery += "&" + "" + "=" + ""; + strQuery += "&" + "" + "=" + ""; return strQuery; } -- 2.39.2