From 3ad0d28e9300cb4ed3da3ef28f09cc87cfc1f89d Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Fri, 22 Dec 2023 10:36:42 +0000 Subject: [PATCH] Bug 34575: Add a CSS class to patron email Adds a CSS class to the patron email section in the 'name-address' column of search results in members-home.pl No functional behaviour change. --- koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc index 4a9b203782..c2a5fd65a1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc @@ -482,7 +482,7 @@ r += $format_address(row, { no_line_break: true, include_li: true }); if ( row.email ) { - r += "
  • " + _("Email: ") + "" + escape_str(row.email) + "
  • "; + r += "
  • " + _("Email: ") + "" + escape_str(row.email) + "
  • "; } r += '' -- 2.30.2