fixed not working removal of home dirs, if acocunt/group get deleted

This commit is contained in:
Ralf Becker 2008-04-19 09:15:46 +00:00
parent 24989686df
commit 9fe5314ed6

View File

@ -534,6 +534,10 @@ class egw_vfs extends vfs_stream_wrapper
*/
static function _rm_rmdir($url)
{
if ($url[0] == '/')
{
$url = self::PREFIX . $url;
}
if (is_dir($url))
{
return rmdir($url);