ConfigController: notification text fixes

NB: We still have to translate them
This commit is contained in:
Thomas Gelf 2014-06-25 10:50:31 +02:00
parent 7ebdb2d378
commit 2b23b259fa
1 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ class ConfigController extends BaseConfigController
if (!$this->writeConfigFile($form->getConfig(), 'config')) {
return;
}
Notification::success("Configuration Sucessfully Updated");
Notification::success('New configuration has successfully been stored');
$form->setConfiguration(IcingaConfig::app(), true);
$this->redirectNow('config/index');
}
@ -115,7 +115,7 @@ class ConfigController extends BaseConfigController
if (!$this->writeConfigFile($form->getConfig(), 'config')) {
return;
}
Notification::success("Configuration Sucessfully Updated");
Notification::success('New configuration has sucessfully been stored');
$form->setConfiguration(IcingaConfig::app(), true);
$this->redirectNow('config/logging');
}