From: Janusz Kaczmarek Date: Mon, 14 Mar 2011 06:21:47 +0000 (+0100) Subject: Bug 5819 : No toolbar in record view when quotes present in title - fix X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=d6e580439be3382af88aed5e3ba9f7e3e8876f0b;p=koha.git 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 --- 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; }