[open-ils-commits] [GIT] Evergreen ILS branch rel_2_12 updated. 836a0b895d3194715894708e2597643268d524c9
Evergreen Git
git at git.evergreen-ils.org
Tue Aug 22 10:52:08 EDT 2017
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_12 has been updated
via 836a0b895d3194715894708e2597643268d524c9 (commit)
from 4b897789465945f285a841b3591929040ce71199 (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 836a0b895d3194715894708e2597643268d524c9
Author: Dan Scott <dscott at laurentian.ca>
Date: Tue Aug 22 10:08:22 2017 -0400
LP#1712362 Display single conjoined items
An off-by-one error resulted in single conjoined items not being linked
from their peer bib record.
Signed-off-by: Dan Scott <dscott at laurentian.ca>
Signed-off-by: Mike Rylander <mrylander at gmail.com>
diff --git a/Open-ILS/src/templates/opac/parts/record/copy_table.tt2 b/Open-ILS/src/templates/opac/parts/record/copy_table.tt2
index b4b6940..f8c7e41 100644
--- a/Open-ILS/src/templates/opac/parts/record/copy_table.tt2
+++ b/Open-ILS/src/templates/opac/parts/record/copy_table.tt2
@@ -226,7 +226,7 @@ END; # FOREACH bib
[% END %]
<tr><td>
-[%- IF copy_info.peer_bib_marc.size > 1;
+[%- IF copy_info.peer_bib_marc.size > 0;
'<ul>';
FOREACH bib IN copy_info.peer_bib_marc;
attrs = {marc_xml => bib};
-----------------------------------------------------------------------
Summary of changes:
.../src/templates/opac/parts/record/copy_table.tt2 | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list