Bugzilla – Attachment 34179 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]
Bug 10051: Separate first name and surname with comma in overdues report
Bug-10051-Separate-first-name-and-surname-with-com.patch (text/plain), 2.10 KB, created by
Jonathan Druart
on 2014-12-08 15:56:52 UTC
(
hide
)
Description:
Bug 10051: Separate first name and surname with comma in overdues report
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2014-12-08 15:56:52 UTC
Size:
2.10 KB
patch
obsolete
>From 91516cd279f83a490d572d00bc38aec8eb3b11bc 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] 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> > >Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> >--- > koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >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> >-- >2.1.0
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