Bugzilla – Attachment 156363 Details for
Bug 34870
Unrecognized special characters when writing off an invoice with a note
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 34870: Perform UTF8 encoding before redirection
Bug-34870-Perform-UTF8-encoding-before-redirection.patch (text/plain), 2.45 KB, created by
Marcel de Rooy
on 2023-09-29 07:35:29 UTC
(
hide
)
Description:
Bug 34870: Perform UTF8 encoding before redirection
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2023-09-29 07:35:29 UTC
Size:
2.45 KB
patch
obsolete
>From 319e9b5234ded2b019acd4fd7eed5b11b4854719 Mon Sep 17 00:00:00 2001 >From: emilyrose <emily-rose.francoeur@inLibro.com> >Date: Fri, 22 Sep 2023 11:58:23 -0400 >Subject: [PATCH] Bug 34870: Perform UTF8 encoding before redirection >MIME-Version: 1.0 >Content-Type: text/plain; charset=utf-8 >Content-Transfer-Encoding: 8bit >Content-Type: text/plain; charset=utf-8 > >Display special characters correctly when writing off an invoice. > >The issue arises because pay.pl does not perform UTF-8 encoding on the ânotesâ parameter before redirecting the page. By using uri_escape_utf8, characters with a code above 255 are also UTF-8 encoded. Then, paycollect.pl can collect the information without any trouble. > >This patch work with â;â and â:â characters. > >TEST PLAN >1) Go to any patron profile > Accounting >2) Click âCreate manual invoiceâ >3) Fill the fields and click the âSaveâ button >4) Repeat steps 2 and 3 >5) Click âMake a paymentâ >6) Add a note with special characters for each one (e.g., éçö) >7) Select the created invoices and click the âWrite off selectedâ button >8) In the note field, you should see â�â symbols where the special characters are supposed to be >9) Click the âCancelâ button >10) Now add a note with â:;â for one of the invoices >11) Select the invoices and click the âWrite off selectedâ button >12) You should see a page with an error 500 >13) Go back to the âMake a paymentâ page >14) Apply the patch >15) Add a note with special characters for each one (e.g., éçö) >16) Add â:;â to one of the note fields >17) Select the invoices and click the âWrite off selectedâ button >18) Now the special characters are displayed correctly > >Signed-off-by: David Nind <david@davidnind.com> >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > members/pay.pl | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/members/pay.pl b/members/pay.pl >index adc34b37c3..19ab74bdc3 100755 >--- a/members/pay.pl >+++ b/members/pay.pl >@@ -280,7 +280,8 @@ sub payselected { > } > $amt = '&amt=' . $amt; > my $sel = '&selected=' . join ',', @lines_to_pay; >- my $notes = '¬es=' . join("%0A", map { scalar $input->param("payment_note_$_") } @lines_to_pay ); >+ my $notes = >+ '¬es=' . uri_escape_utf8( join( "\n", map { scalar $input->param("payment_note_$_") } @lines_to_pay ) ); > my $redirect = > "/cgi-bin/koha/members/paycollect.pl?borrowernumber=$borrowernumber" > . "&type=$type" >-- >2.30.2
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 34870
:
156005
|
156006
|
156120
|
156357
| 156363