Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / lib / Drupal / Core / Database / Query / Condition.php
index 51693576e86513488e110191c9caf484037f083b..dd9a730f1d55f17bb2ddd105975cd6aa22c93899 100644 (file)
@@ -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] : [];
     }