From 4cb4ab7aa8f68799b1b4c0df4447d7f252c2d5d1 Mon Sep 17 00:00:00 2001 From: Dan Scott Date: Thu, 24 Oct 2013 09:54:49 -0400 Subject: [PATCH] RDA / TPAC: Add 264 for pubinfo graphic 880 lookups Per https://bugs.launchpad.net/evergreen/+bug/1243746 the publication info in search results was coming up empty for RDA records because they use 264 for publication info instead of 260. Signed-off-by: Dan Scott Signed-off-by: Ben Shum --- Open-ILS/src/templates/opac/parts/misc_util.tt2 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Open-ILS/src/templates/opac/parts/misc_util.tt2 b/Open-ILS/src/templates/opac/parts/misc_util.tt2 index 363318d852..cdd8eff81f 100644 --- a/Open-ILS/src/templates/opac/parts/misc_util.tt2 +++ b/Open-ILS/src/templates/opac/parts/misc_util.tt2 @@ -174,8 +174,10 @@ # Full publisher info args.pubinfo = "$args.pubplace $args.publisher $args.pubdate"; + # RDA adds 264 to the pubinfo 880 consideration mix graphic_880s = []; get_graphic_880s(target_field='260'); + get_graphic_880s(target_field='264'); args.graphic_pubinfos = graphic_880s; args.pubinfos = []; FOR pubinfo IN args.graphic_pubinfos; -- 2.43.2