diff options
Diffstat (limited to 'modules/local_import/helpers/local_import.php')
| -rw-r--r-- | modules/local_import/helpers/local_import.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/local_import/helpers/local_import.php b/modules/local_import/helpers/local_import.php index ca7d01e4..d40b6016 100644 --- a/modules/local_import/helpers/local_import.php +++ b/modules/local_import/helpers/local_import.php @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ class local_import { - public static function get_admin_page() { + static function get_admin_page() { $template = new View("local_import_admin.html"); $paths = unserialize(module::get_var("local_import", "authorized_paths", "a:0:{}")); @@ -30,7 +30,7 @@ class local_import { return $template; } - public static function get_admin_form() { + static function get_admin_form() { $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") |
