summaryrefslogtreecommitdiffstats
path: root/files/ajax/newfolder.php
diff options
context:
space:
mode:
Diffstat (limited to 'files/ajax/newfolder.php')
-rw-r--r--files/ajax/newfolder.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/files/ajax/newfolder.php b/files/ajax/newfolder.php
deleted file mode 100644
index 2aff95e5b35..00000000000
--- a/files/ajax/newfolder.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-
-// Init owncloud
-
-
-OC_JSON::checkLoggedIn();
-
-// Get the params
-$dir = isset( $_POST['dir'] ) ? stripslashes($_POST['dir']) : '';
-$foldername = isset( $_POST['foldername'] ) ? stripslashes($_POST['foldername']) : '';
-
-if(trim($foldername) == '') {
- OC_JSON::error(array("data" => array( "message" => "Empty Foldername" )));
- exit();
-}
-
-if(OC_Files::newFile($dir, stripslashes($foldername), 'dir')) {
- OC_JSON::success(array("data" => array()));
- exit();
-}
-
-OC_JSON::error(array("data" => array( "message" => "Error when creating the folder" )));