Bugzilla – Attachment 4334 Details for
Bug 6444
Encoding problems with vendor names in subscription-add.pl
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch adaptation to 3.4
0001-3.4-Bug-6444-Corrects-encoding-problems-in-subscript.patch (text/plain), 1.58 KB, created by
Frédéric Demians
on 2011-06-01 19:36:15 UTC
(
hide
)
Description:
Patch adaptation to 3.4
Filename:
MIME Type:
Creator:
Frédéric Demians
Created:
2011-06-01 19:36:15 UTC
Size:
1.58 KB
patch
obsolete
>From fd07c1394ea35598e46bad72183dbb5a277ab45c Mon Sep 17 00:00:00 2001 >From: =?UTF-8?q?Fr=C3=A9d=C3=A9rick=20Capovilla?= <frederick.capovilla@sys-tech.net> >Date: Wed, 1 Jun 2011 14:33:28 -0400 >Subject: [PATCH] [3.4] Bug 6444 Corrects encoding problems in > subscription-add.pl > >When searching for a vendor, if the vendor has accented character in its >name, the vendor's name that's added in the form of subscription-add.pl >is encoded incorrectly. > >[2011.06.01] F. Demians. Port it to 3.4 >--- > .../prog/en/modules/serials/acqui-search-result.tt | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/acqui-search-result.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/acqui-search-result.tt >index b92aafb..2a29f72 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/acqui-search-result.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/acqui-search-result.tt >@@ -6,7 +6,7 @@ > function GetIt(aqbooksellerid,name) > { > opener.document.f.aqbooksellerid.value = aqbooksellerid; >- opener.document.f.aqbooksellername.value = unescape(name); >+ opener.document.f.aqbooksellername.value = name; > window.close(); > } > </script> >@@ -33,7 +33,7 @@ function GetIt(aqbooksellerid,name) > <tr> > [% END %] > <td>[% loop_supplier.name %]</td> >- <td><a href="#" onclick="GetIt([% loop_supplier.aqbooksellerid %],'[% loop_supplier.name |url %]')">Choose</a></td> >+ <td><a href="#" onclick="GetIt([% loop_supplier.aqbooksellerid %],$(this).parent().prev().text())">Choose</a></td> > </tr> > [% END %] > </table> >-- >1.7.5.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 6444
:
4332
|
4333
| 4334