thrown an E_WARNING if the path is not within open_basedir. isReadableFile() uses
isReachableFilePath() which does this check.
Signed-off-by: Roland Haeder <roland@mxchange.org>
} elseif (!is_dir($templateBasePath)) {
// Is not a path
throw new BasePathIsNoDirectoryException(array($this, $templateBasePath), self::EXCEPTION_INVALID_PATH_NAME);
- } elseif (!is_readable($templateBasePath)) {
+ } elseif (!BaseFrameworkSystem::isReadableFile($templateBasePath)) {
// Is not readable
throw new BasePathReadProtectedException(array($this, $templateBasePath), self::EXCEPTION_READ_PROTECED_PATH);
}
-Subproject commit cdc1f3a9b3eefa6ca1b719c069e14c5ee2f9876a
+Subproject commit 92c578b946b4fb17e705dd8ebabbd23e967584d0