monitoring: Fix missing return argument in the backend configuration form

This commit is contained in:
Eric Lippmann 2014-12-30 09:47:19 +01:00
parent 24b2369adb
commit e72361c2cb
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ class BackendConfigForm extends ConfigForm
}
} catch (InvalidArgumentException $e) {
Notification::error($e->getMessage());
return;
return null;
}
if ($this->save()) {