(refs #28)Fix information message.

This commit is contained in:
takezoe
2013-07-10 18:24:46 +09:00
parent 653872df8e
commit 02c015574f
9 changed files with 88 additions and 75 deletions

View File

@@ -25,7 +25,7 @@ trait SystemSettingsControllerBase extends ControllerBase with FlashMapSupport {
post("/admin/system", form)(adminOnly { form =>
saveSystemSettings(SystemSettings(form.allowAccountRegistration))
flash += "info" -> "Settings updated."
flash += "info" -> "System settings has been updated."
redirect("/admin/system")
})