Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / text / text.module
index b88fdc1fd74cb7fff7d2952331ef07dd80818fb4..a8c2b847fe42069ab97a04c1913858d5e0f4affd 100644 (file)
@@ -91,7 +91,7 @@ function text_summary($text, $format = NULL, $size = NULL) {
   }
 
   // If we have a short body, the entire body is the summary.
-  if (Unicode::strlen($text) <= $size) {
+  if (mb_strlen($text) <= $size) {
     return $text;
   }