From 34eaa45deaf28bc0e0c331d022615a01249af56e 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 Signed-off-by: David Nind --- 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 535cbca2c9..43f233601d 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