diff options
Diffstat (limited to 'files/ajax')
-rw-r--r-- | files/ajax/rename.php | 2 | ||||
-rw-r--r-- | files/ajax/upload.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/files/ajax/rename.php b/files/ajax/rename.php index 86cb7944a88..65763fceb94 100644 --- a/files/ajax/rename.php +++ b/files/ajax/rename.php @@ -8,7 +8,7 @@ header( "Content-Type: application/jsonrequest" ); // Check if we are a user if( !OC_USER::isLoggedIn()){ - echo json_encode( array( "status" => "error", "data" => "Authentication error" )); + echo json_encode( array( "status" => "error", "data" => array( "message" => "Authentication error" ))); exit(); } diff --git a/files/ajax/upload.php b/files/ajax/upload.php index 959794913b9..194d84f4be2 100644 --- a/files/ajax/upload.php +++ b/files/ajax/upload.php @@ -10,7 +10,7 @@ header( "Content-Type: text/plain" ); // Check if we are a user if( !OC_USER::isLoggedIn()){ - echo json_encode( array( "status" => "error", "data" => "Authentication error" )); + echo json_encode( array( "status" => "error", "data" => array( "message" => "Authentication error" ))); exit(); } |