From b57823baa5d4f0d23be8d034550a0ffcb788a2ca Mon Sep 17 00:00:00 2001 From: Jakob Sack Date: Mon, 18 Apr 2011 15:07:14 +0200 Subject: Made the "change password" thingie in settings working --- files/ajax/rename.php | 2 +- files/ajax/upload.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'files/ajax') 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(); } -- cgit v1.2.3