Bugzilla – Attachment 33850 Details for
Bug 13019
Add base classes on which to build Koha objects
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 13019 [QA Followup] - Remove use of encode
Bug-13019-QA-Followup---Remove-use-of-encode.patch (text/plain), 830 bytes, created by
Kyle M Hall (khall)
on 2014-11-24 13:07:42 UTC
(
hide
)
Description:
Bug 13019 [QA Followup] - Remove use of encode
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2014-11-24 13:07:42 UTC
Size:
830 bytes
patch
obsolete
>From 043e675c4c4850a419f7ec7d67aa79e40a08eb80 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Mon, 24 Nov 2014 06:09:54 -0500 >Subject: [PATCH] Bug 13019 [QA Followup] - Remove use of encode > >--- > Koha/Object.pm | 3 +-- > 1 files changed, 1 insertions(+), 2 deletions(-) > >diff --git a/Koha/Object.pm b/Koha/Object.pm >index ff712c9..bc2746f 100644 >--- a/Koha/Object.pm >+++ b/Koha/Object.pm >@@ -20,7 +20,6 @@ package Koha::Object; > use Modern::Perl; > > use Carp; >-use Encode qw{encode}; > > use Koha::Database; > >@@ -259,7 +258,7 @@ sub AUTOLOAD { > return $self->_result()->set_column( $method, @_ ); > } else { > my $value = $self->_result()->get_column( $method ); >- return encode( 'UTF-8', $value ); >+ return $value; > } > } > >-- >1.7.2.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 13019
:
31964
|
32004
|
32007
|
32008
|
32009
|
32042
|
32043
|
32045
|
32056
|
32059
|
32065
|
32068
|
33418
|
33419
|
33420
|
33797
|
33840
|
33841
|
33842
|
33843
|
33844
|
33845
|
33846
|
33847
|
33848
|
33849
|
33850
|
33852
|
35813
|
35814
|
35815
|
35980