change View->deleteAll to an alias of View->rmdir since rmdir works recursive

This commit is contained in:
Robin Appelman 2013-09-07 14:10:51 +02:00
parent b8241aa79d
commit 46a57a9f05
1 changed files with 1 additions and 1 deletions

View File

@ -333,7 +333,7 @@ class View {
}
public function deleteAll($directory, $empty = false) {
return $this->basicOperation('deleteAll', $directory, array('delete'), $empty);
return $this->rmdir($directory);
}
public function rename($path1, $path2) {