Skip to content
Snippets Groups Projects
Commit 9a516b55 authored by Tymoteusz Motylewski's avatar Tymoteusz Motylewski Committed by Xavier Perseguers
Browse files

[BUGFIX] Fix open_basedir warning when entering install tool

Due to the bug in php https://bugs.php.net/bug.php?id=67378
Warning is triggered when you have open_basedir set up.

This patch suppress the warning as a workaround.
This code is executed only when calling the install tool.
It doesn't influence FE or BE requests so it's acceptable
to use @ operator.

Resolves: #64882
Releases: master
Change-Id: I7881103464ec018cc0a23f47f6cd8c05bb34929c
Reviewed-on: http://review.typo3.org/36680


Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: default avatarXavier Perseguers <xavier@typo3.org>
Tested-by: default avatarXavier Perseguers <xavier@typo3.org>
parent 32f18173
Branches
Tags
No related merge requests found
......@@ -184,7 +184,7 @@ class EnableFileService {
*/
static protected function getFirstInstallFilePaths() {
$files = array_filter(scandir(self::$sitePath), function($file) {
return (is_file(self::$sitePath . $file) && preg_match('~^' . self::FIRST_INSTALL_FILE_PATH . '.*~i', $file));
return (@is_file(self::$sitePath . $file) && preg_match('~^' . self::FIRST_INSTALL_FILE_PATH . '.*~i', $file));
});
return $files;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment