From 432eea430f0637465d26a163bcb11c29937a5362 Mon Sep 17 00:00:00 2001 From: Hector Castro Date: Thu, 22 Sep 2016 11:24:40 -0600 Subject: [PATCH] [SIGNED-OFF]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 --- 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 cca2a28..f282aab 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 += ""; -- 1.7.10.4