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

View File

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