From 086c354cbe94bc790a7dba6ae3cea55e9fee4bb4 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Fri, 15 Aug 2014 19:29:21 -0700 Subject: [PATCH] Revert "Fix DAO to properly enforce desired collation" --- CRM/Core/DAO.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Core/DAO.php b/CRM/Core/DAO.php index 7a05dbdd15..cb1b3938a5 100644 --- a/CRM/Core/DAO.php +++ b/CRM/Core/DAO.php @@ -207,7 +207,7 @@ class CRM_Core_DAO extends DB_DataObject { */ function initialize() { $this->_connect(); - $this->query("SET NAMES utf8 COLLATE utf8_unicode_ci"); + $this->query("SET NAMES utf8"); } /** -- 2.25.1