Fix typo in FormController.php
All checks were successful
gitea/evoadmin-mail/pipeline/tag This commit looks good
gitea/evoadmin-mail/pipeline/head This commit looks good

This commit is contained in:
David Prevot 2023-07-26 16:52:39 +02:00
parent cf873c35eb
commit 65449431f9

View file

@ -150,7 +150,7 @@ class FormController {
PageController::$alerts[] = array('type' => 1, 'message' => 'Suppression du compte '.self::$form['uid'].'...');
try {
self::$domain->delAccount(self::$form['uid'],self::$form['domain']);
PageController::$alerts[] = array('type' => 0, 'message' => "Suppression effectuée."));
PageController::$alerts[] = array('type' => 0, 'message' => "Suppression effectuée.");
} catch (Exception $e) {
PageController::$alerts[] = array('type' => 2, 'message' => $e->getMessage());
}