summaryrefslogtreecommitdiff
path: root/modules/gallery/helpers
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-06-12 03:50:50 +0800
committerMarc Poulhiès <dkm@kataplop.net>2009-06-12 13:39:26 +0800
commitcf687fe15248b4d14f5fefc6eddd91f5dcafe3c2 (patch)
tree78fec5806dc0264dc6f4444d161eecaf94f51045 /modules/gallery/helpers
parent15adde714d667be984c2357cd0bf3fae5691ff5c (diff)
Rename theme_details to theme_options. These changes got left out of
68fd196d66e2d21f571ff3b5a673f18cd129abf9 leaving us in a temporarily broken state. Signed-off-by: Marc Poulhiès <dkm@kataplop.net>
Diffstat (limited to 'modules/gallery/helpers')
-rw-r--r--modules/gallery/helpers/gallery_menu.php4
-rw-r--r--modules/gallery/helpers/theme.php2
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/gallery/helpers/gallery_menu.php b/modules/gallery/helpers/gallery_menu.php
index 9729a868..fd4ec241 100644
--- a/modules/gallery/helpers/gallery_menu.php
+++ b/modules/gallery/helpers/gallery_menu.php
@@ -144,9 +144,9 @@ class gallery_menu_Core {
->label(t("Theme Choice"))
->url(url::site("admin/themes")))
->append(Menu::factory("link")
- ->id("theme_details")
+ ->id("theme_options")
->label(t("Theme Options"))
- ->url(url::site("admin/theme_details"))))
+ ->url(url::site("admin/theme_options"))))
->append(Menu::factory("link")
->id("maintenance")
->label(t("Maintenance"))
diff --git a/modules/gallery/helpers/theme.php b/modules/gallery/helpers/theme.php
index af340db6..0a43f25c 100644
--- a/modules/gallery/helpers/theme.php
+++ b/modules/gallery/helpers/theme.php
@@ -40,7 +40,7 @@ class theme_Core {
}
static function get_edit_form_admin() {
- $form = new Forge("admin/theme_details/save/", "", null, array("id" =>"gThemeDetailsForm"));
+ $form = new Forge("admin/theme_options/save/", "", null, array("id" =>"gThemeOptionsForm"));
$group = $form->group("edit_theme");
$group->input("page_size")->label(t("Items per page"))->id("gPageSize")
->rules("required|valid_digit")