Skip to content
Snippets Groups Projects
Commit 63a5409c authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #4757 from owncloud/deleteAll-alias

change View->deleteAll to an alias of View->rmdir since rmdir works recursive
parents 5e1821f2 46a57a9f
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment