[open-ils-commits] [GIT] Evergreen ILS branch master updated. 6830b4e30ce7f2dd5275928d47f9398461b47f4a
Evergreen Git
git at git.evergreen-ils.org
Tue Aug 22 10:52:19 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, master has been updated
via 6830b4e30ce7f2dd5275928d47f9398461b47f4a (commit)
from 6a144c779e4fa5b02ffd92e309eaa79f0891eb46 (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 6830b4e30ce7f2dd5275928d47f9398461b47f4a
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 0b6266d..8535e7c 100644
--- a/Open-ILS/src/templates/opac/parts/record/copy_table.tt2
+++ b/Open-ILS/src/templates/opac/parts/record/copy_table.tt2
@@ -243,7 +243,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