diff --git a/htdocs/lib/FormController.php b/htdocs/lib/FormController.php index 232bdb8..ccb2bc7 100644 --- a/htdocs/lib/FormController.php +++ b/htdocs/lib/FormController.php @@ -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()); }