From d44d0acfec4e0b9a7f5dac33677e759e0fd69ab0 Mon Sep 17 00:00:00 2001 From: Hector Castro Date: Thu, 22 Sep 2016 11:24:40 -0600 Subject: [PATCH] Bug 14668: (follow-up) JSON fails if single quotes are used Change single quotes to double quotes also add brackets to serial enumeration. To test follow previous test plan for intranet. Fix double semicolon Signed-off-by: Hector Castro Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall --- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js index cca2a28108..f282aaba73 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -228,7 +228,7 @@ $(document).ready(function() { }); if ( oObj.enumchron ) { - title += ' ' + oObj.enumchron; + title += " (" + oObj.enumchron + ")"; } title += ""; @@ -504,7 +504,7 @@ $(document).ready(function() { }); if ( oObj.enumchron ) { - title += ' ' + oObj.enumchron; + title += " (" + oObj.enumchron + ")"; } title += ""; -- 2.39.5