diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-10-23 22:24:06 -0600 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-10-23 22:24:06 -0600 |
commit | e3f90a889d5bb4cb1214445bbf5be8c9815d8733 (patch) | |
tree | ad6b7097fcd56de3c85f630535b501662fbc6845 /modules/server_add/controllers | |
parent | 85affaf23faba36a6cb266bc66875d2cb6555a81 (diff) |
Adjust order of items on server_add admin page. Restore autocomplete to the add form. Created a server_add.css file.
Diffstat (limited to 'modules/server_add/controllers')
-rw-r--r-- | modules/server_add/controllers/admin_server_add.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/server_add/controllers/admin_server_add.php b/modules/server_add/controllers/admin_server_add.php index cb71e1f1..f32bb834 100644 --- a/modules/server_add/controllers/admin_server_add.php +++ b/modules/server_add/controllers/admin_server_add.php @@ -83,9 +83,9 @@ class Admin_Server_Add_Controller extends Admin_Controller { private function _get_admin_form() { $form = new Forge("admin/server_add/add_path", "", "post", - array("id" => "g-server-add-admin-form", "class" => "g-short-form g-wide")); + array("id" => "g-server-add-admin-form", "class" => "g-short-form")); $add_path = $form->group("add_path"); - $add_path->input("path")->label(t("Path"))->rules("required") + $add_path->input("path")->label(t("Path"))->rules("required")->id("g-path") ->error_messages("not_readable", t("This directory is not readable by the webserver")) ->error_messages("is_symlink", t("Symbolic links are not allowed")); $add_path->submit("add")->value(t("Add Path")); |