From f132e79ded6f7cb68e1d14deb048a6afabfbd033 Mon Sep 17 00:00:00 2001 From: Dan Scott Date: Fri, 15 Jun 2012 22:59:23 -0400 Subject: [PATCH] TPAC: Physical description, now with spaces Record details will regularly include physical descriptions like "Physical Description: 1 sound disc :33 1/3 rpm, mono." where the colon is jammed up against the content from the following subfield. Easily fixed by using a space as the joiner for the subfields. Signed-off-by: Dan Scott Signed-off-by: Michael Peters --- Open-ILS/src/templates/opac/parts/misc_util.tt2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/templates/opac/parts/misc_util.tt2 b/Open-ILS/src/templates/opac/parts/misc_util.tt2 index 3b9f9a2f2d..992e9e2c39 100644 --- a/Open-ILS/src/templates/opac/parts/misc_util.tt2 +++ b/Open-ILS/src/templates/opac/parts/misc_util.tt2 @@ -47,7 +47,7 @@ ); phys_content = []; FOR p IN phys; phys_content.push(p.textContent); END; - args.phys_desc = phys_content.join(""); + args.phys_desc = phys_content.join(" "); args.contents = xml.findnodes('//*[@tag="505"]').textContent; -- 2.11.0