diff --git a/src/ZM/Utils/DataProvider.php b/src/ZM/Utils/DataProvider.php index a60275e4..4c73c65f 100644 --- a/src/ZM/Utils/DataProvider.php +++ b/src/ZM/Utils/DataProvider.php @@ -163,6 +163,6 @@ class DataProvider */ public static function isRelativePath($path) { - return strlen($path) > 0 && $path[0] === '/'; + return strlen($path) > 0 && $path[0] !== '/'; } }