[open-ils-commits] [GIT] Evergreen ILS branch master updated. a3b3409f5f357297848a473dbba024a65b2aa7f0

Evergreen Git git at git.evergreen-ils.org
Tue Nov 15 12:00:44 EST 2011


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  a3b3409f5f357297848a473dbba024a65b2aa7f0 (commit)
      from  6c8d8bc88eda71c54b9833d2480ff8859b2c088f (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 a3b3409f5f357297848a473dbba024a65b2aa7f0
Author: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>
Date:   Mon Nov 14 13:18:30 2011 -0500

    TPac: Fix glitch in displaying received holdings
    
    Under "issues held" on the record detail page, holdings summaries for
    received issues are nested in an additional layer of array as compared
    to MFHD-based holdings, so compensate.
    
    Signed-off-by: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>
    Signed-off-by: Bill Erickson <berick at esilibrary.com>

diff --git a/Open-ILS/src/templates/opac/parts/record/issues.tt2 b/Open-ILS/src/templates/opac/parts/record/issues.tt2
index 4ed20af..f346587 100644
--- a/Open-ILS/src/templates/opac/parts/record/issues.tt2
+++ b/Open-ILS/src/templates/opac/parts/record/issues.tt2
@@ -51,7 +51,10 @@ FOREACH type IN ctx.holding_summaries.keys;
 %]
             <tr>
                 <td class="rdetail-mfhd-type">[% mfhd.$type %]</td>
-                <td class="rdetail-mfhd-contents">[% serial.$type.join(', ') %]</td>
+                <td class="rdetail-mfhd-contents">[%
+                    FOR thing IN serial.$type;
+                        thing.join(", ");
+                    END %]</td>
             </tr>
         [% END %]
             <tr>

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

Summary of changes:
 .../src/templates/opac/parts/record/issues.tt2     |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list