From 3f983c7249f2141a2908f1cef4e9c5a0c2ba282d Mon Sep 17 00:00:00 2001 From: Andrew Isherwood Date: Mon, 9 Apr 2018 15:41:57 +0100 Subject: [PATCH] Bug 20515: (QA follow-up) Remove specific superlibrarian check Removed the test for CAN_user_superlibrarian as requested Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart --- koha-tmpl/intranet-tmpl/prog/en/includes/header.inc | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc index 73ed6f9e79..6b868308bf 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc @@ -28,7 +28,7 @@
  • Acquisitions
  • [% END %]
  • Authorities
  • - [% IF ( Koha.Preference('ILLModule') && (CAN_user_ill || CAN_user_superlibrarian) ) %] + [% IF Koha.Preference('ILLModule') && CAN_user_ill %]
  • ILL Requests
  • [% END %] [% IF ( CAN_user_serials ) %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt index 875524aa28..26480cc53a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt @@ -81,7 +81,7 @@
  • Authorities
  • - [% IF Koha.Preference('ILLModule') && (CAN_user_ill || CAN_user_superlibrarian) %] + [% IF Koha.Preference('ILLModule') && CAN_user_ill %]
  • ILL requests
  • -- 2.11.4.GIT