Reverted fix temporarily; another fix by LukasReschke is awaiting merge

This commit is contained in:
Sam Tuke 2013-02-06 19:06:55 +00:00
parent faf6cb0868
commit 2c22619a18
1 changed files with 3 additions and 1 deletions

View File

@ -22,7 +22,9 @@ if(OC_User::getUser() === $username) {
if (OC_User::checkPassword($username, $oldPassword)) {
$userstatus = 'user';
} else {
$userstatus = null;
if (!OC_Util::isUserVerified()) {
$userstatus = null;
}
}
}