From 429a1cb35b691b9493a89ad05ac36d2bf2272a19 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 3 Sep 2019 18:52:35 +0000 Subject: [PATCH] Bug 23534: Use patron-title.inc on patron entry page There are a few instances where we can simplify the patron entry template by using the patron-title include file instead of outputting patron name variables one by one. This patch does so in the page title, page breadcrumbs, and page heading. To test, apply the patch and edit a patron record. The page title, breadcrumbs, and main heading should all look correct. Signed-off-by: Maryse Simard --- .../intranet-tmpl/prog/en/modules/members/memberentrygen.tt | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt index 770fada..954a8e5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt @@ -12,8 +12,7 @@ [% ELSIF ( opduplicate ) %] Duplicate patron [% ELSE %] Modify patron [% END %] - [% IF (firstname) %][% firstname | html %] [% END %] - [% IF (surname) %][% surname | html %] [% END %] + [% INCLUDE 'patron-title.inc' no_html = 1 %] ([% IF categoryname %] [% categoryname | html %] [% ELSE %] @@ -39,12 +38,7 @@ › [% IF (firstname || surname ) %] - [% IF (firstname) %] - [% firstname | html %] - [% END %] - [% IF (surname) %] - [% surname | html %] - [% END %] + [% INCLUDE 'patron-title.inc' %] › [% END %] @@ -102,8 +96,7 @@ Modify patron [% END %] - [% IF (firstname) %] [% firstname | html %] [% END %] - [% IF (surname) %] [% surname | html %] [% END %] + [% INCLUDE 'patron-title.inc' %] ([% IF ( categoryname ) %] [% categoryname | html %] -- 2.7.4