diff options
-rw-r--r-- | modules/local_import/controllers/admin_local_import.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/local_import/controllers/admin_local_import.php b/modules/local_import/controllers/admin_local_import.php index 2ac105c8..5b556e13 100644 --- a/modules/local_import/controllers/admin_local_import.php +++ b/modules/local_import/controllers/admin_local_import.php @@ -82,7 +82,8 @@ class Admin_Local_Import_Controller extends Admin_Controller { } private function _get_admin_form() { - $form = new Forge("admin/local_import/add_path", "", "post", array("id" => "gLocalImportAdminForm")); + $form = new Forge("admin/local_import/add_path", "", "post", + array("id" => "gLocalImportAdminForm")); $add_path = $form->group("add_path"); $add_path->input("path")->label(t("Path"))->rules("required") ->error_messages("not_readable", t("The directory is not readable by the webserver")); |