From 480a9492f3b44480e26c3a89b4acf8b87cf7546f Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Mon, 28 May 2018 23:56:51 +0200 Subject: [PATCH] Bug 11911: (follow-up) Hide suggestion box on acq start page if no permission When the user is not superlibrarian or has the manage_suggestions permission, the suggestion box on the left of the acq start page needs to be hidden. --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/acqui-home.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/acqui-home.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/acqui-home.tt index 5864a2f655..f7db915a84 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/acqui-home.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/acqui-home.tt @@ -46,7 +46,7 @@ -[% IF ( suggestion && suggestions_count ) %] +[% IF ( CAN_user_acquisition_suggestions_manage && suggestion && suggestions_count ) %]
-- 2.17.0