From a9671cfecd663c25a783d77e00bedd4b3dda6337 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 13 Jun 2023 14:11:33 +0000 Subject: [PATCH] Bug 33999: Subscription details link on bibliographic detail page should have permission check This patch wraps the "Subscription details" link on the bibliographic detail page with a permissions check, "CAN_user_serials," so that a user lacking permission to access the Serials module will not be shown the link. To test, apply the patch and view the bibliographic detail page of a serial record. - When viewing the "Subscriptions" tab as a user with Serials permissions you should see the "Subscription details" link. - When viewing the tab as a user without the correct permissions the link should not be present. Signed-off-by: Lucas Gass --- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt index d4ead1659f..c4b4e9d3b8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -810,7 +810,11 @@ [% END %] [% END %] - Subscription details + [% IF ( CAN_user_serials ) %] +

+ Subscription details +

+ [% END %] [% END %] -- 2.30.2