From f4dd877cffe1bac4e0940e1113b897e57560adf3 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Mon, 16 Jul 2007 09:19:11 +0000 Subject: [PATCH] quitent warning when vfs trys to delete an in the db non-existing file --- phpgwapi/inc/class.vfs_sql.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.vfs_sql.inc.php b/phpgwapi/inc/class.vfs_sql.inc.php index 821c2a6680..1db06b34fb 100644 --- a/phpgwapi/inc/class.vfs_sql.inc.php +++ b/phpgwapi/inc/class.vfs_sql.inc.php @@ -1558,7 +1558,7 @@ { if ($this->file_actions) { - $rr = unlink ($p->real_full_path); + $rr = @unlink ($p->real_full_path); } else {