removing set names=UTF8, seems useless. Still investigating mysql-perl-utf8
authortipaul <tipaul>
Fri, 17 Feb 2006 15:25:59 +0000 (15:25 +0000)
committertipaul <tipaul>
Fri, 17 Feb 2006 15:25:59 +0000 (15:25 +0000)
C4/Context.pm

index 9c82561..d848ab0 100644 (file)
@@ -412,7 +412,7 @@ sub _new_dbh
                            $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;
 }