Fixed problem with move_files function always returning false

This commit is contained in:
Andreas Stöckel 2011-08-02 09:33:13 +00:00
parent 26f08e7149
commit 5a7daf61aa

View File

@ -1700,7 +1700,11 @@ class egw_vfs extends vfs_stream_wrapper
++$errs;
}
}
return $errs == 0;
}
return false;
}
/**