@@ -, +, @@ on claims tab --- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -905,9 +905,9 @@ $(document).ready(function() { + ( oObj.enumchron || "" ) + ''; if ( oObj.author ) { - title += 'by ' + oObj.author; + title += ' by ' + oObj.author; } - title += '' + oObj.barcode + ''; + title += ' ' + oObj.barcode + ''; return title; } --