From 2f94da74c5f48ca3f7253b3de3a4a5ee8fa70b5e 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 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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. Signed-off-by: Séverine QUEUNE Signed-off-by: Jonathan Druart Signed-off-by: Nick Clemens --- 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 d7ef8038a8..32a133240f 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 @@ -49,7 +49,7 @@ -[% IF ( suggestion && suggestions_count ) %] +[% IF ( CAN_user_acquisition_suggestions_manage && suggestion && suggestions_count ) %]
-- 2.20.1