[Koha-cvs] koha/C4 Context.pm

paul poulain paul at koha-fr.org
Fri Feb 17 16:26:00 CET 2006


CVSROOT:	/cvsroot/koha
Module name:	koha
Branch: 	
Changes by:	paul poulain <tipaul at savannah.gnu.org>	06/02/17 15:26:00

Modified files:
	C4             : Context.pm 

Log message:
	removing set names=UTF8, seems useless. Still investigating mysql-perl-utf8

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha/C4/Context.pm.diff?tr1=1.28&tr2=1.29&r1=text&r2=text

Patches:
Index: koha/C4/Context.pm
diff -u koha/C4/Context.pm:1.28 koha/C4/Context.pm:1.29
--- koha/C4/Context.pm:1.28	Wed Jan  4 15:54:55 2006
+++ koha/C4/Context.pm	Fri Feb 17 15:25:59 2006
@@ -15,7 +15,7 @@
 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
 # Suite 330, Boston, MA  02111-1307 USA
 
-# $Id: Context.pm,v 1.28 2006/01/04 15:54:55 tipaul Exp $
+# $Id: Context.pm,v 1.29 2006/02/17 15:25:59 tipaul Exp $
 # Revision History:
 # 2004-08-11 A. Tarallo: Added the function db_escheme2dbi, tested my bugfixes,
 # further  details about them in the code.
@@ -31,7 +31,7 @@
 	qw($context),
 	qw(@context_stack);
 
-$VERSION = do { my @v = '$Revision: 1.28 $' =~ /\d+/g;
+$VERSION = do { my @v = '$Revision: 1.29 $' =~ /\d+/g;
 		shift(@v) . "." . join("_", map {sprintf "%03d", $_ } @v); };
 
 =head1 NAME
@@ -412,7 +412,7 @@
 			    $db_user, $db_passwd);
 	# Koha 3.0 is utf-8, so force utf8 communication between mySQL and koha, whatever the mysql default config.
 	# this is better than modifying my.cnf (and forcing all communications to be in utf8)
-	$dbh->do("set NAMES 'utf8'");
+#	$dbh->do("set NAMES 'utf8'");
 	return $dbh;
 }
 





More information about the Koha-cvs mailing list