mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 17:33:49 +01:00
Fix attempting to open a document link in infolog pops collabora link even the user has no permission to the collabora app
This commit is contained in:
parent
867c661796
commit
1f998f1612
@ -126,7 +126,7 @@ class StreamWrapper extends LinksParent
|
||||
* @param string $app
|
||||
* @return boolean
|
||||
*/
|
||||
protected static function check_app_rights($app)
|
||||
public static function check_app_rights($app)
|
||||
{
|
||||
if ($GLOBALS['egw_info']['user']['account_id'] == Vfs::$user)
|
||||
{
|
||||
|
@ -313,7 +313,9 @@ class filemanager_hooks
|
||||
);
|
||||
foreach ($implemented as $app)
|
||||
{
|
||||
if (($l = Api\Hooks::process('filemanager-editor-link','collabora', true)) && $l[$app])
|
||||
|
||||
if ( \EGroupware\Stylite\Vfs\Links\StreamWrapper::check_app_rights($app) &&
|
||||
($l = Api\Hooks::process('filemanager-editor-link',$app, true)) && $l[$app])
|
||||
{
|
||||
$link = $l[$app];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user