mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-02 12:09:04 +01:00
need to catch the statement in line 1347
This commit is contained in:
parent
226ee1485d
commit
5bc4dc90e3
@ -1344,15 +1344,16 @@ class Link extends Link\Storage
|
|||||||
Storage\History::static_add($link['app2'],$link['id2'],$GLOBALS['egw_info']['user']['account_id'],'~file~','', Vfs::basename($url));
|
Storage\History::static_add($link['app2'],$link['id2'],$GLOBALS['egw_info']['user']['account_id'],'~file~','', Vfs::basename($url));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (($Ok = !file_exists($url) || Vfs::remove($url,true)) && ((int)$app > 0 || $fname))
|
try {
|
||||||
{
|
if (($Ok = !file_exists($url) || Vfs::remove($url,true)) && ((int)$app > 0 || $fname))
|
||||||
// try removing the dir, in case it's empty
|
{
|
||||||
try {
|
// try removing the dir, in case it's empty
|
||||||
if (($dir = Vfs::dirname($url))) @Vfs::rmdir($dir);
|
if (($dir = Vfs::dirname($url))) @Vfs::rmdir($dir);
|
||||||
}
|
}
|
||||||
catch (\Exception $e) {
|
}
|
||||||
// ignore SQL error caused by only virtual directories with non-integer (hash) fs_id
|
catch (\Exception $e) {
|
||||||
}
|
// ignore SQL error caused by only virtual directories with non-integer (hash) fs_id
|
||||||
|
$Ok = false;
|
||||||
}
|
}
|
||||||
if (!is_null($current_is_root))
|
if (!is_null($current_is_root))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user