From 4649a0d3dc06b6d9f543b84bbe13e0856a0950c9 Mon Sep 17 00:00:00 2001 From: Dmitriy Simushev Date: Wed, 2 Jul 2014 11:44:27 +0000 Subject: [PATCH] Fix bug with localized strings case sensitivity --- src/mibew/install/dbinfo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mibew/install/dbinfo.php b/src/mibew/install/dbinfo.php index 728e343a..1d8d7c2f 100644 --- a/src/mibew/install/dbinfo.php +++ b/src/mibew/install/dbinfo.php @@ -121,7 +121,7 @@ $dbtables = array( "stringid" => "int NOT NULL auto_increment PRIMARY KEY", "locale" => "varchar(5) NOT NULL", "context" => "varchar(256) NOT NULL DEFAULT ''", - "source" => "text", + "source" => "text COLLATE utf8_bin", "translation" => "text", ),