mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-01 14:30:32 +02:00
[ticket/14934] Use bare PHP functions for checking for tmp dir
The symfony methods will cause PHP warnings being thrown. PHPBB3-14934
This commit is contained in:
@@ -49,7 +49,7 @@ class proxy_instantiator implements InstantiatorInterface
|
||||
$filesystem = new filesystem();
|
||||
$tmp_dir = (function_exists('sys_get_temp_dir')) ? sys_get_temp_dir() : '';
|
||||
if (empty($tmp_dir) || $ini_wrapper->getString('open_basedir') &&
|
||||
(!$filesystem->exists($tmp_dir) || !$filesystem->is_writable($tmp_dir)))
|
||||
(!@file_exists($tmp_dir) || !@is_writable($tmp_dir)))
|
||||
{
|
||||
$config->setProxiesTargetDir($cache_dir);
|
||||
}
|
||||
|
Reference in New Issue
Block a user