From 4e6de8e33d44f28c59c2f7c410c56f698e4f32f6 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Thu, 9 Feb 2023 22:38:38 +0100 Subject: [PATCH] Bug 32566: Don't show "ILL request log" when IllLog is disabled When the IllLog system preference is disabled there will be no log to view and the log will always appear empty. To test: 1) Activate the IllModule system preference 2) Install a backend (BLDSS or FreeForm) following the wiki instructions: https://wiki.koha-community.org/wiki/ILL_backends 3) Go to the ILL module and add a new request 4) The "ILL request log" entry in the toolbar should be visible 5) Turn off the IllLog system preference 6) Reload the page - the option should remain visible 7) Apply patch 8) Verify the link is now no longer visible after reload 9) Re-activate the IllLog 10) Verify the option now appears Signed-off-by: David Nind Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi (cherry picked from commit f1ca05ac77f0d2537967bbf000a09cdb0a74a2d1) (cherry picked from commit 86ec29294386f3882d2eb1686d0e27c54792e8c2) Signed-off-by: Lucas Gass --- .../intranet-tmpl/prog/en/modules/ill/ill-requests.tt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt index c5c464cf1a..072b96aa8d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt @@ -594,10 +594,12 @@ Display supplier metadata - - - ILL request log - + [% IF Koha.Preference('IllLog') %] + + + ILL request log + + [% END %]
-- 2.39.5