mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
deny sharing owner rights (chmod, chgrp, set eACL) and disable eACL tab
This commit is contained in:
parent
c9b3f4ae28
commit
0d99d129dc
@ -1383,7 +1383,9 @@ class Vfs
|
||||
$vfs = new Vfs\StreamWrapper();
|
||||
$stat = $vfs->url_stat($path,0);
|
||||
}
|
||||
return $stat['uid'] == self::$user || // user is the owner
|
||||
return $stat['uid'] == self::$user && // (current) user is the owner
|
||||
// in sharing current user != self::$user and should NOT have owner rights
|
||||
$GLOBALS['egw_info']['user']['account_id'] == self::$user ||
|
||||
self::$is_root || // class runs with root rights
|
||||
!$stat['uid'] && $stat['gid'] && self::$is_admin; // group directory and user is an eGW admin
|
||||
}
|
||||
|
@ -1321,7 +1321,8 @@ class filemanager_ui
|
||||
5 => lang('Display of content'),
|
||||
0 => lang('No access'),
|
||||
);
|
||||
if(($content['eacl'] = Vfs::get_eacl($content['path'])) !== false) // backend supports eacl
|
||||
if(($content['eacl'] = Vfs::get_eacl($content['path'])) !== false && // backend supports eacl
|
||||
$GLOBALS['egw_info']['user']['account_id'] == Vfs::$user) // leave eACL tab disabled for sharing
|
||||
{
|
||||
unset($readonlys['tabs']['filemanager.file.eacl']); // --> switch the tab on again
|
||||
foreach($content['eacl'] as &$eacl)
|
||||
|
Loading…
Reference in New Issue
Block a user