Bugzilla – Attachment 179322 Details for
Bug 39295
Patron card creator infinite loop during line wrapping in template/layout incompatibility
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39295: Prevent infinite loop on line wrapping
Bug-39295-Prevent-infinite-loop-on-line-wrapping.patch (text/plain), 2.49 KB, created by
Marcel de Rooy
on 2025-03-14 11:00:27 UTC
(
hide
)
Description:
Bug 39295: Prevent infinite loop on line wrapping
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2025-03-14 11:00:27 UTC
Size:
2.49 KB
patch
obsolete
>From a3f7031734f9da099f07accd70a6fc8c01be68e5 Mon Sep 17 00:00:00 2001 >From: David Cook <dcook@prosentient.com.au> >Date: Tue, 11 Mar 2025 01:56:51 +0000 >Subject: [PATCH] Bug 39295: Prevent infinite loop on line wrapping >Content-Type: text/plain; charset=utf-8 > >This change checks that the string width is larger than 0 before >attempting to perform line wrapping on the line. > >Test plan: >0. Apply the patch and koha-plack --restart kohadev >1. Follow instructions at end of this message[1] >2. Note that the infinite loop does not happen and that a blank >card is created >3. Export the batch using the test layout and template that come >with koha-testing-docker >4. Note that the patron card is correctly created > >[1] >To reproduce: > >0. Change Koha test user's firstnameto "Firstname" and surname to "Lastname" > >1. Create a template: >Units: PostScript Points >Page height: 60pt >Page width: 60pt >Card height: 60pt >Card with: 60pt > >Top page margin: 10pt >Left page margin: 10pt >Number of columns: 1 >Number of rows: 1 >Gap between columns: 10pt >Gap between rows: 10pt > >2. Create a layout: >Units: US inches > >Field 1: >Text: Library Name >Font: Times-Roman >Font size: 12 pt >Text alignment: Left >Lower left X coordinate: 100in >Lower left Y coordinate: 100in > >Field 2: >Text: <firstname> <surname> >Font: Times-Roman >Font size: 10pt >Text alignment: Left >Lower left X coordinate: 5in >Lower left Y coordinate: 5in > >3. Create a batch for borrowernumber 51 (if using "koha" test user in ktd) > >4. Export using the above template and layout > >Signed-off-by: David Nind <david@davidnind.com> > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > C4/Patroncards/Patroncard.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/C4/Patroncards/Patroncard.pm b/C4/Patroncards/Patroncard.pm >index f28f362e6c..281d80d80f 100644 >--- a/C4/Patroncards/Patroncard.pm >+++ b/C4/Patroncards/Patroncard.pm >@@ -304,7 +304,7 @@ sub draw_text { > > # $font_units_width = $m->string_width($line); > # $string_width = ($font_units_width * $text_attribs->{'font_size'}) / $units_per_em; >- if ( ( $string_width + $text_attribs->{'llx'} ) < $self->{'width'} ) { >+ if ( $string_width && ( ( $string_width + $text_attribs->{'llx'} ) < $self->{'width'} ) ) { > ( $Tx, $Tw ) = text_alignment( > $origin_llx, $self->{'width'}, $text_attribs->{'llx'}, $string_width, $line, > $text_attribs->{'text_alignment'} >-- >2.39.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 39295
:
179133
|
179141
| 179322