diff options
Diffstat (limited to 'core/helpers')
-rw-r--r-- | core/helpers/core_event.php | 4 | ||||
-rw-r--r-- | core/helpers/core_organize.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/core/helpers/core_event.php b/core/helpers/core_event.php index d1869360..2116eb78 100644 --- a/core/helpers/core_event.php +++ b/core/helpers/core_event.php @@ -45,11 +45,11 @@ class core_event_Core { ->find(); $event_parms->panes[] = array("label" => $item->is_album() ? t("Edit Album") : t("Edit Photo"), - "content" => core_organize::getGeneralEditForm($item)); + "content" => core_organize::get_general_edit_form($item)); if ($item->is_album()) { $event_parms->panes[] = array("label" => t("Sort Order"), - "content" => core_organize::getSortEditForm($item)); + "content" => core_organize::get_sort_edit_form($item)); } } diff --git a/core/helpers/core_organize.php b/core/helpers/core_organize.php index 6ccc0197..585e8253 100644 --- a/core/helpers/core_organize.php +++ b/core/helpers/core_organize.php @@ -19,7 +19,7 @@ */ class core_organize_Core { - static function getGeneralEditForm($item) { + static function get_general_edit_form($item) { $generalPane = new Forge("core_organize/__FUNCTION__", "", "post", array("id" => "gEditGeneral", "ref" => "general")); // In this case we know there is only 1 item, but in general we should loop @@ -38,7 +38,7 @@ class core_organize_Core { return $generalPane; } - static function getSortEditForm($item) { + static function get_sort_edit_form($item) { $sortPane = new Forge("core_organize/__FUNCTION__", "", "post", array("id" => "gEditSort", "ref" => "sort")); $sortPane->hidden("item[]")->value($item->id); |