YAML properties should be camelCase

This commit is contained in:
Sam Georges 2014-08-14 19:32:48 +10:00
parent d9ca311ce3
commit f6fc9a9e00
1 changed files with 3 additions and 3 deletions

View File

@ -154,7 +154,7 @@ class FormController extends ControllerBehavior
$this->controller->formAfterSave($model); $this->controller->formAfterSave($model);
$this->controller->formAfterCreate($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)) if ($redirect = $this->makeRedirect('create', $model))
return $redirect; return $redirect;
@ -207,7 +207,7 @@ class FormController extends ControllerBehavior
$this->controller->formAfterSave($model); $this->controller->formAfterSave($model);
$this->controller->formAfterUpdate($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)) if ($redirect = $this->makeRedirect('update', $model))
return $redirect; return $redirect;
@ -228,7 +228,7 @@ class FormController extends ControllerBehavior
$this->controller->formAfterDelete($model); $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)) if ($redirect = $this->makeRedirect('delete', $model))
return $redirect; return $redirect;