diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-05-21 14:01:26 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-05-21 14:01:26 +0000 |
commit | de9f0450941121acb0faae3fbe8e3c46ce1c93be (patch) | |
tree | b32d5c32d99d9bb5fbe8513095dce3694b5f4423 /core/controllers/core_organize.php | |
parent | fdf7ce24f563d219cc15161ad223435fc537df48 (diff) |
Standardize the method names
Diffstat (limited to 'core/controllers/core_organize.php')
-rw-r--r-- | core/controllers/core_organize.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/controllers/core_organize.php b/core/controllers/core_organize.php index 99f8b199..ca73076d 100644 --- a/core/controllers/core_organize.php +++ b/core/controllers/core_organize.php @@ -27,7 +27,7 @@ class Core_Organize_Controller extends Controller { ->find(); access::required("edit", $item); - $form = core_organize::getGeneralEditForm($item); + $form = core_organize::get_general_edit_form($item); if ($form->validate()) { $orig = clone $item; $item->title = $form->title->value; @@ -59,7 +59,7 @@ class Core_Organize_Controller extends Controller { ->find(); access::required("edit", $item); - $form = core_organize::getSortEditForm($item); + $form = core_organize::get_sort_edit_form($item); if ($form->validate()) { $orig = clone $item; $item->sort_column = $form->column->value; @@ -83,7 +83,7 @@ class Core_Organize_Controller extends Controller { ->find(); access::required("edit", $item); - print core_organize::getGeneralEditForm($item); + print core_organize::get_general_edit_form($item); } public function reset_sort() { @@ -93,7 +93,7 @@ class Core_Organize_Controller extends Controller { ->find(); access::required("edit", $item); - print core_organize::getSortEditForm($item); + print core_organize::get_sort_edit_form($item); } } |