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.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ajax/newfolder.php b/files/ajax/newfolder.php
index 988e7f04012..610418583bd 100644
--- a/files/ajax/newfolder.php
+++ b/files/ajax/newfolder.php
@@ -7,7 +7,7 @@ require_once('../../lib/base.php');
header( "Content-Type: application/jsonrequest" );
// Check if we are a user
-if( !OC_USER::isLoggedIn()){
+if( !OC_User::isLoggedIn()){
echo json_encode( array( "status" => "error", "data" => array( "message" => "Authentication error" )));
exit();
}
@@ -21,7 +21,7 @@ if($foldername == '') {
exit();
}
error_log('try to create ' . $foldername . ' in ' . $dir);
-if(OC_FILES::newFile($dir, $foldername, 'dir')) {
+if(OC_Files::newFile($dir, $foldername, 'dir')) {
echo json_encode( array( "status" => "success", "data" => array()));
exit();
}