From: Galen Charlton Date: Fri, 25 Aug 2017 14:29:43 +0000 (-0400) Subject: LP#1712840: extend fix to circ and holds history tabs X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=bd35e12edf2451384a1699328a97fa89f7c5a9fd;p=evergreen%2Fpines.git LP#1712840: extend fix to circ and holds history tabs This patch fixes the remaining two instances of a bare 'IF ebook_api.enabled' test. Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/templates/opac/myopac/circ_history.tt2 b/Open-ILS/src/templates/opac/myopac/circ_history.tt2 index c7969d78af..a755837473 100644 --- a/Open-ILS/src/templates/opac/myopac/circ_history.tt2 +++ b/Open-ILS/src/templates/opac/myopac/circ_history.tt2 @@ -14,7 +14,7 @@ - [%- IF ebook_api.enabled %] + [%- IF ebook_api.enabled == 'true' %] diff --git a/Open-ILS/src/templates/opac/myopac/hold_history.tt2 b/Open-ILS/src/templates/opac/myopac/hold_history.tt2 index c43d76f173..a1a22b80d6 100644 --- a/Open-ILS/src/templates/opac/myopac/hold_history.tt2 +++ b/Open-ILS/src/templates/opac/myopac/hold_history.tt2 @@ -15,7 +15,7 @@ - [% IF ebook_api.enabled %] + [% IF ebook_api.enabled == 'true' %]