diff options
author | Felix Rabinovich <virshu@users.sourceforge.net> | 2009-01-09 23:54:40 +0000 |
---|---|---|
committer | Felix Rabinovich <virshu@users.sourceforge.net> | 2009-01-09 23:54:40 +0000 |
commit | 48e73e90817a9c525ed50dc332d4a4341a8c6295 (patch) | |
tree | 69b4026c5394fc350dacadeee396bdbead26febc /core/helpers | |
parent | b647aa0f74e66548d6d69fc4585b89220ce60043 (diff) |
Theme Administration cleanup initialization
Diffstat (limited to 'core/helpers')
-rw-r--r-- | core/helpers/theme.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/helpers/theme.php b/core/helpers/theme.php index 62433898..20e9a9d8 100644 --- a/core/helpers/theme.php +++ b/core/helpers/theme.php @@ -39,8 +39,7 @@ class theme_Core { } public static function get_edit_form_admin($theme) { - $form = new Forge("admin/themes/edit/$theme->name", "Theme Parameters", "GET"); -// array("id" => "gThemeDetails")); + $form = new Forge("admin/themes/edit/$theme->name"); $group = $form->group("edit_theme")->label($theme->description); $group->input("name")->label(t("Name"))->id("gName")->value($theme->name); $group->submit(t("Modify Theme")); |