From 398f5b4a7f31783f228ee2cc0409e264bb84cda0 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 16 Mar 2016 10:14:44 +0000 Subject: [PATCH] Bug 16030: Add 'Automatic item modifications by age' to the tool sidebar MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Test plan: Go on a page of the tools module You should see a "Automatic item modifications by age" link Click on it The list should not be styled to highlight the fact that you are on this page. Signed-off-by: Marc VĂ©ron --- koha-tmpl/intranet-tmpl/prog/en/includes/tools-menu.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/tools-menu.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/tools-menu.inc index d4c19bc..4ef2a8e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/tools-menu.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/tools-menu.inc @@ -68,6 +68,9 @@ [% IF CAN_user_tools_records_batchmod %]
  • Batch record modification
  • [% END %] + [% IF CAN_user_tools_items_batchmod %] +
  • Automatic item modifications by age
  • + [% END %] [% IF ( CAN_user_tools_export_catalog ) %]
  • Export data
  • [% END %] -- 1.7.10.4