X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Flib%2FDrupal%2FCore%2FRouting%2FCompiledRoute.php;h=652acc5bb470b75505532176c2f740f624f6040e;hb=refs%2Fheads%2Fd864;hp=a1366a608492819121c57a64872778a196f139d9;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/web/core/lib/Drupal/Core/Routing/CompiledRoute.php b/web/core/lib/Drupal/Core/Routing/CompiledRoute.php index a1366a608..652acc5bb 100644 --- a/web/core/lib/Drupal/Core/Routing/CompiledRoute.php +++ b/web/core/lib/Drupal/Core/Routing/CompiledRoute.php @@ -2,7 +2,6 @@ namespace Drupal\Core\Routing; -use Drupal\Component\Utility\Unicode; use Symfony\Component\Routing\CompiledRoute as SymfonyCompiledRoute; /** @@ -69,7 +68,7 @@ class CompiledRoute extends SymfonyCompiledRoute { // Support case-insensitive route matching by ensuring the pattern outline // is lowercase. // @see \Drupal\Core\Routing\RouteProvider::getRoutesByPath() - $this->patternOutline = Unicode::strtolower($pattern_outline); + $this->patternOutline = mb_strtolower($pattern_outline); $this->numParts = $num_parts; }