X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Flib%2FDrupal%2FCore%2FDatabase%2FQuery%2FCondition.php;h=dd9a730f1d55f17bb2ddd105975cd6aa22c93899;hb=refs%2Fheads%2Fd864;hp=51693576e86513488e110191c9caf484037f083b;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/web/core/lib/Drupal/Core/Database/Query/Condition.php b/web/core/lib/Drupal/Core/Database/Query/Condition.php index 51693576e..dd9a730f1 100644 --- a/web/core/lib/Drupal/Core/Database/Query/Condition.php +++ b/web/core/lib/Drupal/Core/Database/Query/Condition.php @@ -375,7 +375,8 @@ class Condition implements ConditionInterface, \Countable { } else { // We need to upper case because PHP index matches are case sensitive but - // do not need the more expensive Unicode::strtoupper() because SQL statements are ASCII. + // do not need the more expensive mb_strtoupper() because SQL statements + // are ASCII. $operator = strtoupper($operator); $return = isset(static::$conditionOperatorMap[$operator]) ? static::$conditionOperatorMap[$operator] : []; }