From: Dan Scott Date: Sat, 16 Jun 2012 02:59:23 +0000 (-0400) Subject: TPAC: Physical description, now with spaces X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e1348fb435a757f6cc96fe28029677efe0cfc5ad;p=evergreen%2Fpines.git 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 --- diff --git a/Open-ILS/src/templates/opac/parts/misc_util.tt2 b/Open-ILS/src/templates/opac/parts/misc_util.tt2 index 0906c06efa..fe4d97fe02 100644 --- a/Open-ILS/src/templates/opac/parts/misc_util.tt2 +++ b/Open-ILS/src/templates/opac/parts/misc_util.tt2 @@ -80,7 +80,7 @@ ); phys_content.push(sub.textContent); END; - args.phys_desc = phys_content.join(""); + args.phys_desc = phys_content.join(" "); args.contents_list = []; FOR sub IN xml.findnodes('//*[@tag="505"]');