From f6fc9a9e00d986a748787ef0e63ffe94c414ea82 Mon Sep 17 00:00:00 2001 From: Sam Georges Date: Thu, 14 Aug 2014 19:32:48 +1000 Subject: [PATCH] YAML properties should be camelCase --- modules/backend/behaviors/FormController.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/backend/behaviors/FormController.php b/modules/backend/behaviors/FormController.php index b2c8e5cc8..0d5a8a9fb 100644 --- a/modules/backend/behaviors/FormController.php +++ b/modules/backend/behaviors/FormController.php @@ -154,7 +154,7 @@ class FormController extends ControllerBehavior $this->controller->formAfterSave($model); $this->controller->formAfterCreate($model); - Flash::success($this->getLang('create[flash-save]', 'backend::lang.form.create_success')); + Flash::success($this->getLang('create[flashSave]', 'backend::lang.form.create_success')); if ($redirect = $this->makeRedirect('create', $model)) return $redirect; @@ -207,7 +207,7 @@ class FormController extends ControllerBehavior $this->controller->formAfterSave($model); $this->controller->formAfterUpdate($model); - Flash::success($this->getLang('update[flash-save]', 'backend::lang.form.update_success')); + Flash::success($this->getLang('update[flashSave]', 'backend::lang.form.update_success')); if ($redirect = $this->makeRedirect('update', $model)) return $redirect; @@ -228,7 +228,7 @@ class FormController extends ControllerBehavior $this->controller->formAfterDelete($model); - Flash::success($this->getLang('update[flash-delete]', 'backend::lang.form.delete_success')); + Flash::success($this->getLang('update[flashDelete]', 'backend::lang.form.delete_success')); if ($redirect = $this->makeRedirect('delete', $model)) return $redirect;