mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 00:43:20 +01:00
* Filemanager: fix missing symlink overlay on mime-icon
This commit is contained in:
parent
dc4e2d73dc
commit
2cb8029f4f
@ -281,7 +281,7 @@ class Vfs
|
||||
*/
|
||||
static function lstat($path,$try_create_home=false)
|
||||
{
|
||||
if ($path[0] != '/')
|
||||
if ($path[0] != '/' && strpos($path, self::PREFIX.'/') !== 0)
|
||||
{
|
||||
throw new Exception\AssertionFailed("File '$path' is not an absolute path!");
|
||||
}
|
||||
@ -624,7 +624,7 @@ class Vfs
|
||||
}
|
||||
else
|
||||
{
|
||||
$stat = self::stat($path, STREAM_URL_STAT_LINK);
|
||||
$stat = self::lstat($path);
|
||||
}
|
||||
if (!$stat)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user