php 74 compat
authordemeritcowboy <demeritcowboy@hotmail.com>
Wed, 6 Jan 2021 21:51:18 +0000 (16:51 -0500)
committerdemeritcowboy <demeritcowboy@hotmail.com>
Wed, 6 Jan 2021 21:51:18 +0000 (16:51 -0500)
Civi/Core/Paths.php

index 89b433679a90b42125d156ac864be853b0415b07..b35e11e14cee6e2a25bba04bdb05786e415a307a 100644 (file)
@@ -200,7 +200,7 @@ class Paths {
     }
 
     $defaultContainer = self::DEFAULT_PATH;
-    if ($value && $value{0} == '[' && preg_match(';^\[([a-zA-Z0-9\._]+)\]/(.*);', $value, $matches)) {
+    if ($value && $value[0] == '[' && preg_match(';^\[([a-zA-Z0-9\._]+)\]/(.*);', $value, $matches)) {
       $defaultContainer = $matches[1];
       $value = $matches[2];
     }