mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
fix some scrutinizer "bugs"
This commit is contained in:
parent
d11405205c
commit
ada94b8d43
@ -1620,7 +1620,7 @@ class Vfs extends Vfs\StreamWrapper
|
||||
{
|
||||
// we require write rights to lock/unlock a resource
|
||||
if (!$path || $update && !$token || $check_writable &&
|
||||
!(self::is_writable($path) || !self::file_exists($path) && self::is_writable(self::dirname($path))))
|
||||
!(self::is_writable($path) || !self::file_exists($path) && ($dir=self::dirname($path)) && self::is_writable($dir)))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
@ -2050,7 +2050,7 @@ class Vfs extends Vfs\StreamWrapper
|
||||
if (self::LOG_LEVEL) error_log(__METHOD__."($tmp_name, $target, ".array2string($props).",$check_is_uploaded_file) returning FALSE !is_uploaded_file()");
|
||||
return false;
|
||||
}
|
||||
if (!(self::is_writable($target) || self::is_writable(self::dirname($target))))
|
||||
if (!(self::is_writable($target) || ($dir = self::dirname($target)) && self::is_writable($dir)))
|
||||
{
|
||||
if (self::LOG_LEVEL) error_log(__METHOD__."($tmp_name, $target, ".array2string($props).",$check_is_uploaded_file) returning FALSE !writable");
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user