From 94beabe90652757d7c971d4379a275c47d3cf520 Mon Sep 17 00:00:00 2001 From: mark burdett Date: Wed, 23 Oct 2019 10:13:09 -0700 Subject: [PATCH] Remove obsolete method. --- CRM/Utils/SQL.php | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/CRM/Utils/SQL.php b/CRM/Utils/SQL.php index 8c7f4c6938..d7aab2132b 100644 --- a/CRM/Utils/SQL.php +++ b/CRM/Utils/SQL.php @@ -119,21 +119,6 @@ class CRM_Utils_SQL { return TRUE; } - /** - * Is the Database set up to handle acceents. - * @warning This function was introduced in attempt to determine the reason why the test getInternationalStrings was failing on ubu1604 but passing on ubu1204-5 - * This function should not be used as the basis of further work as the reasoning is not perfact and is giving false failures. - * @return bool - */ - public static function supportStorageOfAccents() { - $charSetDB = CRM_Core_DAO::executeQuery("SHOW VARIABLES LIKE 'character_set_database'")->fetchAll(); - $charSet = $charSetDB[0]['Value']; - if ($charSet == 'utf8') { - return TRUE; - } - return FALSE; - } - /** * Does the DB version support mutliple locks per * -- 2.25.1