Update upstream source from tag 'upstream/1.0.9'

Update to upstream version '1.0.9'
with Debian dir 1774734b8f
This commit is contained in:
David Prevot 2023-07-28 08:53:40 +02:00
commit dfbdf72a29

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());
}