1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-20 23:51:28 +01: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:
Marc Alexander 2016-12-25 15:04:48 +01:00
parent 27cf12f807
commit c6aa4a319d
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -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);
}