diff options
author | Felix Rabinovich <virshu@users.sourceforge.net> | 2009-01-22 02:25:10 +0000 |
---|---|---|
committer | Felix Rabinovich <virshu@users.sourceforge.net> | 2009-01-22 02:25:10 +0000 |
commit | cd86c4ee774f826f9548ddcd9b8f50db4462e68f (patch) | |
tree | 17a0886338aec7e5ed21893f41dd7a06e59af422 /core/helpers/theme.php | |
parent | 90666f7e04dc300480bb2972917b135294ff05f6 (diff) |
Theme details. Save values
Diffstat (limited to 'core/helpers/theme.php')
-rw-r--r-- | core/helpers/theme.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/helpers/theme.php b/core/helpers/theme.php index f36eb371..586ca0cf 100644 --- a/core/helpers/theme.php +++ b/core/helpers/theme.php @@ -39,7 +39,7 @@ class theme_Core { } static function get_edit_form_admin() { - $form = new Forge("admin/themes/edit/", + $form = new Forge("admin/themedetails/save/", '', null, array("id" =>"gThemeDetailsForm")); $group = $form->group("edit_theme"); $group->input("page_size")->label(t("Items per page"))->id("gPageSize")-> @@ -52,7 +52,7 @@ class theme_Core { rules('required|valid_digit')-> value(module::get_var("core", "resize_size")); $group->submit("")->value(t("Modify Theme")); - return $form->render(); + return $form; } static function get_edit_form_content($theme_name) { |