From c534a9bd9379426e080b9c94a12b32e825bedc40 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 5 Mar 2014 10:56:38 -0500 Subject: [PATCH] Bug 11866 [Follow-up] Staff side course reserves too restrictive Content-Type: text/plain; charset="utf-8" This follow-up patch adds a check for the "UseCourseReserves" system preference to the display of the Course reserves menu item in the header. To test, view the "More" menu with the "UseCourseReserves" system preference on and off. The menu item should appear and disappear accordingly. --- .../intranet-tmpl/prog/en/includes/header.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc index a3489c3..30c431b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc @@ -22,7 +22,9 @@ [% IF ( CAN_user_serials ) %]
  • Serials
  • [% END %] + [% IF ( UseCourseReserves ) %]
  • Course reserves
  • + [% END %] [% IF ( CAN_user_reports ) %]
  • Reports
  • [% END %] -- 1.7.9.5