From 674d240f03e0152e5bf63e2fff9c77ff2e51f254 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 19 May 2023 16:39:39 +0100 Subject: [PATCH] Bug 29002: (follow-up) Fix biblio-view-menu on bookings tab Another rebase change, we moved from can_ in Auth.pm to Koha.Preference Signed-off-by: Martin Renvoize Signed-off-by: Janet McGowan Signed-off-by: Caroline Cyr La Rose Signed-off-by: Laurence Rault Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi --- .../intranet-tmpl/prog/en/includes/biblio-view-menu.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc index 5869598de8..a03124820b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc @@ -12,7 +12,7 @@ Normal - [%- IF ( can_view_MARC ) -%] + [%- IF Koha.Preference('viewMARC') -%] [%- IF ( marcview ) -%]
  • [%- ELSE -%] @@ -22,7 +22,7 @@
  • [%- END -%] - [%- IF ( can_view_labeledMARC ) -%] + [%- IF Koha.Preference('viewLabeledMARC') -%] [%- IF ( labeledmarcview ) -%]
  • [%- ELSE -%] @@ -32,7 +32,7 @@
  • [%- END -%] - [%- IF ( can_view_ISBD ) -%] + [%- IF Koha.Preference('viewISBD') -%] [%- IF ( isbdview ) -%]
  • [%- ELSE -%] -- 2.39.5