mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
fix PHP Fatal caused by calling method of old hooks class
This commit is contained in:
parent
2339ca4598
commit
bf0fbbb521
@ -998,7 +998,7 @@ class StreamWrapper implements StreamWrapperIface
|
|||||||
'account_lid' => basename($path),
|
'account_lid' => basename($path),
|
||||||
'account_name' => basename($path),
|
'account_name' => basename($path),
|
||||||
);
|
);
|
||||||
call_user_func(array('vfs_home_hooks',$hook_data['location']),$hook_data);
|
call_user_func(array(__NAMESPACE__.'\\Hooks',$hook_data['location']),$hook_data);
|
||||||
unset($hook_data);
|
unset($hook_data);
|
||||||
$stat = self::url_stat($path,$flags,false);
|
$stat = self::url_stat($path,$flags,false);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user