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=99756288c586291010ffe64878884cd00582ee40;p=Evergreen.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 Signed-off-by: Ben Shum --- diff --git a/Open-ILS/src/templates/opac/myopac/circ_history.tt2 b/Open-ILS/src/templates/opac/myopac/circ_history.tt2 index 8e989c4362..7affa68590 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 16b4c029b9..87c9973450 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' %]