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
Branches
No related tags found
No related merge requests found
......@@ -6,15 +6,15 @@ require_once('../../lib/base.php');
// We send json data
header( "Content-Type: application/jsonrequest" );
$username = isset($_POST["username"]) ? $_POST["username"] : OC_User::getUser();
$password = $_POST["password"];
// 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" )));
exit();
}
$username = isset($_POST["username"]) ? $_POST["username"] : OC_User::getUser();
$password = $_POST["password"];
// Return Success story
if( OC_User::setPassword( $username, $password )){
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.
Please register or to comment