From 5052b943e5600d70a0abeaf54f49c557cd218745 Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Thu, 15 Feb 2024 12:42:04 -0100 Subject: [PATCH] Bug 32693: Update tab_item html helper tab_item html helper now allows for a boolean tablink option to set if the the tab item is a link or not --- koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc index 535cbca2c91..43f233601df 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc @@ -393,7 +393,11 @@ [% ELSE %]
  • [% END %] - + [% IF (linktab) %] + + [% ELSE %] + + [% END %] [% content | $raw %]
  • -- 2.30.2