Archived
1
0
Fork 0

app/controllers/backend/UserController.php: typo fix.

This commit is contained in:
Henrik Hautakoski 2022-08-28 17:49:03 +02:00
parent d3e52269cd
commit 151daa8529

View file

@ -104,7 +104,7 @@ class UserController extends \Phalcon\Mvc\Controller
if ($user) {
if ($user->isSuspended()) {
$this->eventsManager->fire('auth:onSentActivation', $user);
$this->flash->success('Ativation email sent to: ' . $user->email);
$this->flash->success('Activation email sent to: ' . $user->email);
} else {
$this->flash->error('Only suspended users can be sent activation emails.');
}