check for old password when changing passwords
This commit is contained in:
parent
ae4c83af91
commit
09092dd2d2
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ $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' )&& $username!=OC_User::getUser())) {
|
||||
if( !OC_User::isLoggedIn() || (!OC_Group::inGroup( OC_User::getUser(), 'admin' ) && ($username!=OC_User::getUser() || !OC_User::checkPassword($username,$password)))) {
|
||||
echo json_encode( array( "status" => "error", "data" => array( "message" => "Authentication error" )));
|
||||
exit();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue