[open-ils-commits] [GIT] Evergreen ILS branch rel_2_12 updated. 47dc23f05825aca7a3562d5a8a9b76be30117b4e

Evergreen Git git at git.evergreen-ils.org
Mon Apr 24 14:52:01 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  47dc23f05825aca7a3562d5a8a9b76be30117b4e (commit)
      from  097f3de7caaff6840383ccc30244303fc2568bf2 (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 47dc23f05825aca7a3562d5a8a9b76be30117b4e
Author: Kathy Lussier <klussier at masslnc.org>
Date:   Wed Apr 19 02:02:33 2017 -0400

    LP#1684011: My Account summary ebook link correction
    
    The links on the My Account Summary page to the user's ebook checkouts and holds
    go to the incorrect URL. The links are updated in this commit to the correct
    URL.
    
    Test Plan:
    * If your test system is not configured for ebook access, enabled it in the
    config.tt2 file by setting ebook_api_enabled to true and
    ebook_api.ebook_test.enabled to true.
    * Log into a patron account
    * The Account Summary page will show links to E-Items Currently Checked out,
    E-Items Currently on Hold, and E-Items ready for pickup. Pre-patch, clicking one
    of those links will bring you to a 404 page. Post-patch, clicking those links
    should bring you to the appropriate My Account tab.
    
    Signed-off-by: Kathy Lussier <klussier at masslnc.org>
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>

diff --git a/Open-ILS/src/templates/opac/parts/myopac/main_base.tt2 b/Open-ILS/src/templates/opac/parts/myopac/main_base.tt2
index 705ba02..e19b336 100644
--- a/Open-ILS/src/templates/opac/parts/myopac/main_base.tt2
+++ b/Open-ILS/src/templates/opac/parts/myopac/main_base.tt2
@@ -53,7 +53,7 @@
                         </a>
                     </td>
                     <td class="td-right hidden" id="acct_sum_ebook_circs">
-                        <a href="[% mkurl(ctx.opac_root _ '/myopac/circs?e_items') %]"
+                        <a href="[% mkurl(ctx.opac_root _ '/myopac/ebook_circs') %]"
                             title="[% l('View My Checked Out E-Items') %]">
                             [% l("E-Items Currently Checked out") %] (<span id="acct_sum_ebook_circ_total">-</span>)
                         </a>
@@ -68,7 +68,7 @@
                         </a>
                     </td>
                     <td class="td-right hidden" id="acct_sum_ebook_holds">
-                        <a href="[% mkurl(ctx.opac_root _ '/myopac/holds?e_items') %]"
+                        <a href="[% mkurl(ctx.opac_root _ '/myopac/ebook_holds') %]"
                             title="[% l('View My E-Items On Hold') %]">
                             [% l("E-Items Currently on Hold") %] (<span id="acct_sum_ebook_hold_total">-</span>)
                         </a>
@@ -83,7 +83,7 @@
                         </a>
                     </td>
                     <td class="td-right hidden" id="acct_sum_ebook_holds_ready">
-                        <a href="[% mkurl(ctx.opac_root _ '/myopac/holds?e_items&available=1') %]"
+                        <a href="[% mkurl(ctx.opac_root _ '/myopac/ebook_holds_ready') %]"
                             title="[% l('View My E-Items Ready for Pickup') %]">
                             [% l("E-Items ready for pickup") %] (<span id="acct_sum_ebook_hold_ready_total">-</span>)
                         </a>

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

Summary of changes:
 .../src/templates/opac/parts/myopac/main_base.tt2  |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list