mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
fix for error during editing of extended ACL in filemanager; Report error if path to be checked does not exist; Make sure that array_merge uses a casted return of self::get_eacl in case the internal call will return false
This commit is contained in:
parent
7ffdb2f0f4
commit
52a86d7477
@ -1385,6 +1385,7 @@ class sqlfs_stream_wrapper implements iface_stream_wrapper
|
||||
{
|
||||
if (!($stat = self::url_stat($path,STREAM_URL_STAT_QUIET)))
|
||||
{
|
||||
error_log(__METHOD__.__LINE__.' '.array2string($path).' not found!');
|
||||
return false; // not found
|
||||
}
|
||||
$eacls = array();
|
||||
@ -1399,7 +1400,7 @@ class sqlfs_stream_wrapper implements iface_stream_wrapper
|
||||
}
|
||||
if (($path = egw_vfs::dirname($path)))
|
||||
{
|
||||
return array_merge(self::get_eacl($path),$eacls);
|
||||
return array_merge((array)self::get_eacl($path),$eacls);
|
||||
}
|
||||
// sort by length descending, to show precedence
|
||||
usort($eacls,create_function('$a,$b','return strlen($b["path"])-strlen($a["path"]);'));
|
||||
|
Loading…
Reference in New Issue
Block a user