Bugzilla – Attachment 4473 Details for
Bug 6479
Encoding problem in "recievedlist" when the numbering formula contains utf-8 characters
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[SIGNED-OFF] Converts all the serialseq variables to UTF-8.
SIGNED-OFF-Converts-all-the-serialseq-variables-to.patch (text/plain), 1.49 KB, created by
Katrin Fischer
on 2011-06-15 07:43:42 UTC
(
hide
)
Description:
[SIGNED-OFF] Converts all the serialseq variables to UTF-8.
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2011-06-15 07:43:42 UTC
Size:
1.49 KB
patch
obsolete
>From 1b54afe523be11ce5d625a4b909d92c415a7033f Mon Sep 17 00:00:00 2001 >From: =?UTF-8?q?Fr=C3=A9d=C3=A9rick=20Capovilla?= <frederick.capovilla@sys-tech.net> >Date: Tue, 7 Jun 2011 14:03:08 -0400 >Subject: [PATCH] [SIGNED-OFF] Converts all the serialseq variables to UTF-8. >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit >Content-Type: text/plain; charset="utf-8" > >Corrects a problem when an UTF-8 character is used in the serial >numbering formula. The encoding became incorrect when concatenating the >number in the subscriptionhistory table. > >Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> >To reproduce: >- Create subscription with numbering pattern N° {X} >- Receive 2 or more issues >- Check subscription summary page and manual history fields on the edit screen > >http://bugs.koha-community.org/show_bug.cgi?id=6479 >--- > serials/serials-edit.pl | 5 +++++ > 1 files changed, 5 insertions(+), 0 deletions(-) > >diff --git a/serials/serials-edit.pl b/serials/serials-edit.pl >index fbf9ad5..a365ce4 100755 >--- a/serials/serials-edit.pl >+++ b/serials/serials-edit.pl >@@ -196,6 +196,11 @@ $template->param( subscriptions => \@subscriptionloop ); > > if ( $op and $op eq 'serialchangestatus' ) { > >+ # Convert serialseqs to UTF-8 to prevent encoding problems >+ foreach my $seq (@serialseqs) { >+ utf8::decode($seq) unless utf8::is_utf8($seq); >+ } >+ > my $newserial; > for ( my $i = 0 ; $i <= $#serialids ; $i++ ) { > my ($plan_date, $pub_date); >-- >1.7.4.1
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 6479
:
4424
|
4472
|
4473
|
4969