From e17209de48f3c9d3184dfd430d882a4e8f8d5d4f Mon Sep 17 00:00:00 2001 From: Josef Moravec Date: Tue, 18 Oct 2016 00:03:08 +0000 Subject: [PATCH] Bug 17434: Moremember displaying primary and secondary phone number twice Test plan: 1) Create patron category with category code "P" and create a patron with this category 2) Fill in either the primary or other phone number 3) Go to patron details page (moremember.pl) => without patch you see primary/other phone duplicated => with patch you should see the number only once as expected Signed-off-by: Lucio Moraes Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall --- koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt index a5008cabf2..209671e8f0 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt @@ -236,10 +236,6 @@ function validate1(date) { [% IF ( mobile ) %]
  • Other phone: [% mobile | html %]
  • [% END %] [% END %] - [% IF ( P ) %] - [% IF ( phone ) %]
  • Primary phone: [% phone | html %]
  • [% END %] - [% IF ( mobile ) %]
  • Other phone: [% mobile | html %]
  • [% END %] - [% END %] [% IF ( fax ) %]
  • Fax: [% fax %]
  • [% END %] [% UNLESS ( I ) %] [% IF ( email ) %][% END %] -- 2.11.4.GIT