AuthenticationStep: Do not report a success if nothing has changed

This commit is contained in:
Johannes Meyer 2015-07-30 14:14:43 +02:00
parent 0155599a1a
commit eb4e56fbc0
1 changed files with 1 additions and 1 deletions

View File

@ -104,13 +104,13 @@ class AuthenticationStep extends Step
'password' => $this->data['adminAccountData']['password'],
'is_active' => true
));
$this->dbError = false;
}
} catch (Exception $e) {
$this->dbError = $e;
return false;
}
$this->dbError = false;
return true;
}