Skip to content

Commit

Permalink
Update blog/src/Auth/Controller/ChangePasswordController.php
Browse files Browse the repository at this point in the history
Co-authored-by: Alexander Makarov <[email protected]>
  • Loading branch information
rossaddison and samdark authored Aug 20, 2024
1 parent c486fed commit 7233933
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blog/src/Auth/Controller/ChangePasswordController.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function change(
return $this->redirectToMain();
}

$identity_id = $this->currentUser->getIdentity()->getId();
$identityId = $this->currentUser->getIdentity()->getId();
if (null!==$identity_id) {
$identity = $identityRepository->findIdentity($identity_id);
if (null!==$identity) {
Expand Down

0 comments on commit 7233933

Please sign in to comment.