there are comparison errors in the file src/Liquid/LocalFileSystem.php.
There are some comparisons like: if (!$rootRegex->match(realpath($fullPath)))
wich wont be true ever, because the function match() will never return a boolean.
It just returns 0 or 1... I know a bit stupid..
Hello guys,
there are comparison errors in the file src/Liquid/LocalFileSystem.php. There are some comparisons like:
if (!$rootRegex->match(realpath($fullPath)))
wich wont be true ever, because the function match() will never return a boolean. It just returns 0 or 1... I know a bit stupid..