Bugzilla – Attachment 34043 Details for
Bug 10051
surname and first name should have comma in overdues report
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[SIGNED OFF] Bug 10051: Separate first name and surname with comma in overdues report
SIGNED-OFF-Bug-10051-Separate-first-name-and-surna.patch (text/plain), 2.06 KB, created by
Christopher Brannon
on 2014-12-01 16:04:59 UTC
(
hide
)
Description:
[SIGNED OFF] Bug 10051: Separate first name and surname with comma in overdues report
Filename:
MIME Type:
Creator:
Christopher Brannon
Created:
2014-12-01 16:04:59 UTC
Size:
2.06 KB
patch
obsolete
>From d3f9f2ff016d6e4b4d279b4ed65011fa717a1f4f Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <Katrin.Fischer.83@web.de> >Date: Sat, 29 Nov 2014 11:41:50 +0100 >Subject: [PATCH] [SIGNED OFF] Bug 10051: Separate first name and surname with comma in overdues report > >The name of the patron who has overdues is displayed as >"surname first name" instead of "surname, first name". > >To test: >- Go to circulation > overdues >- Verify that first name and surname are not separated by comma >- Apply patch >- Verify the display is improved with a comma >- Delete the first name from one of the patrons >- Verify display is still ok > >Signed-off-by: David Roberts <david.roberts@ptfs-europe.com> >Signed-off-by: Christopher Brannon <cbrannon@debian.localdomain> >--- > .../intranet-tmpl/prog/en/modules/circ/overdue.tt | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt >index 5f71609..fe2a4bd 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt >@@ -109,7 +109,7 @@ overdue as of [% todaysdate %][% IF ( isfiltered ) %] <span style="font-size:70% > <tbody>[% FOREACH overdueloo IN overdueloop %] > <tr> > <td>[% overdueloo.duedate %]</td> >- <td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% overdueloo.borrowernumber %]">[% overdueloo.surname %] [% overdueloo.firstname %]</a> >+ <td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% overdueloo.borrowernumber %]">[% overdueloo.surname %][% IF (overdueloo.firstname) %], [% overdueloo.firstname %][% END %]</a> > [% IF ( overdueloo.email ) %][<a href="mailto:[% overdueloo.email %]?subject=Overdue: [% overdueloo.title |html %]">email</a>][% END %] > [% IF ( overdueloo.phone ) %]([% overdueloo.phone %])[% ELSIF ( overdueloo.mobile ) %]([% overdueloo.mobile %])[% ELSIF ( overdueloo.phonepro ) %]([% overdueloo.phonepro %])[% END %]</td> > <td>[% overdueloo.branchcode %]</td> >-- >1.7.2.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 10051
:
34021
|
34042
|
34043
|
34179