[open-ils-commits] ***SPAM*** [GIT] Evergreen ILS branch rel_2_7 updated. a0eaee9bc327f62ed23c7eed7bae784e65aaa19a

Evergreen Git git at git.evergreen-ils.org
Thu Jan 22 15:48:50 EST 2015


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, rel_2_7 has been updated
       via  a0eaee9bc327f62ed23c7eed7bae784e65aaa19a (commit)
      from  fe2d32243c3ef867a0a4ab2bfea40823bf88b41e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a0eaee9bc327f62ed23c7eed7bae784e65aaa19a
Author: Ben Shum <bshum at biblio.org>
Date:   Tue Dec 16 14:34:12 2014 -0500

    LP#1373594: Also ignore subfield 7 in get_graphics_880s
    
    In the Czech Republic the subfield 7 of MARC fields 1XX and 7XX are used for
    the National authority control number.
    
    The problem is, that in current Evergreen versions, the subfield 7 is displayed
    as a part of the link to author seach in search result or record details, but
    when using the linkt to search rcords of the same author, no results are
    returned, no matter whether the records exist or not.
    
    That is why we nedd to add the subfield 7 into get_graphic_880s.
    
    Signed-off-by: Ben Shum <bshum at biblio.org>
    Signed-off-by: Kathy Lussier <klussier at masslnc.org>

diff --git a/Open-ILS/src/templates/opac/parts/misc_util.tt2 b/Open-ILS/src/templates/opac/parts/misc_util.tt2
index da7c958..b4bf194 100644
--- a/Open-ILS/src/templates/opac/parts/misc_util.tt2
+++ b/Open-ILS/src/templates/opac/parts/misc_util.tt2
@@ -7,7 +7,7 @@
         FOR node IN xml.findnodes('//*[@tag="' _ target_field _ '"]');
             raw_vals = [];
             core_val = '';
-            FOR subnode IN node.findnodes('./*[not(contains("w 0 4 5 6 8 9", @code))]');
+            FOR subnode IN node.findnodes('./*[not(contains("w 0 4 5 6 7 8 9", @code))]');
                 raw_vals.push(subnode.textContent());
             END;
             core_val = raw_vals.join(" ");

-----------------------------------------------------------------------

Summary of changes:
 Open-ILS/src/templates/opac/parts/misc_util.tt2 |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list