Skip to content
Snippets Groups Projects
Commit 9411d8bb authored by Robin Appelman's avatar Robin Appelman
Browse files

fixed users not being able to change their password

parent e89a4b3a
No related branches found
No related tags found
No related merge requests found
...@@ -6,15 +6,15 @@ require_once('../../lib/base.php'); ...@@ -6,15 +6,15 @@ require_once('../../lib/base.php');
// We send json data // We send json data
header( "Content-Type: application/jsonrequest" ); header( "Content-Type: application/jsonrequest" );
$username = isset($_POST["username"]) ? $_POST["username"] : OC_User::getUser();
$password = $_POST["password"];
// Check if we are a user // Check if we are a user
if( !OC_User::isLoggedIn() || !OC_Group::inGroup( OC_User::getUser(), 'admin' )){ if( !OC_User::isLoggedIn() || (!OC_Group::inGroup( OC_User::getUser(), 'admin' )&& $username!=OC_User::getUser())) {
echo json_encode( array( "status" => "error", "data" => array( "message" => "Authentication error" ))); echo json_encode( array( "status" => "error", "data" => array( "message" => "Authentication error" )));
exit(); exit();
} }
$username = isset($_POST["username"]) ? $_POST["username"] : OC_User::getUser();
$password = $_POST["password"];
// Return Success story // Return Success story
if( OC_User::setPassword( $username, $password )){ if( OC_User::setPassword( $username, $password )){
echo json_encode( array( "status" => "success", "data" => array( "username" => $username ))); echo json_encode( array( "status" => "success", "data" => array( "username" => $username )));
......
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