Merge pull request #5673 from AlfredoRamos/ticket/15643

[ticket/15643] Fix open_basedir warnings
This commit is contained in:
Marc Alexander 2019-09-22 12:05:01 +02:00
commit 53aa79cd29
No known key found for this signature in database
GPG key ID: 50E0D2423696F995

View file

@ -835,7 +835,7 @@ class filesystem implements filesystem_interface
$current_path = $resolved_path . '/' . $path_part; $current_path = $resolved_path . '/' . $path_part;
// Resolve symlinks // Resolve symlinks
if (is_link($current_path)) if (@is_link($current_path))
{ {
if (!function_exists('readlink')) if (!function_exists('readlink'))
{ {
@ -872,12 +872,12 @@ class filesystem implements filesystem_interface
$resolved_path = false; $resolved_path = false;
} }
else if (is_dir($current_path . '/')) else if (@is_dir($current_path . '/'))
{ {
$resolved[] = $path_part; $resolved[] = $path_part;
$resolved_path = $current_path; $resolved_path = $current_path;
} }
else if (is_file($current_path)) else if (@is_file($current_path))
{ {
$resolved[] = $path_part; $resolved[] = $path_part;
$resolved_path = $current_path; $resolved_path = $current_path;