diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-09 07:31:38 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-09 07:31:38 +0000 |
commit | bd48d8be7e4de21f7e8365fc38718c396cd745a5 (patch) | |
tree | d34c1b11d73449c1bbc584cd384ff85d96de5689 /modules/file | |
parent | 846ad794d9290d6227d8e09663bae7cb0c4349be (diff) | |
download | brdo-bd48d8be7e4de21f7e8365fc38718c396cd745a5.tar.gz brdo-bd48d8be7e4de21f7e8365fc38718c396cd745a5.tar.bz2 |
#599122 by scor: Convert all require(DRUPAL_ROOT . 'file') to module_load_include().
Diffstat (limited to 'modules/file')
-rw-r--r-- | modules/file/file.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/file/file.module b/modules/file/file.module index e62e960e4..a18460ec9 100644 --- a/modules/file/file.module +++ b/modules/file/file.module @@ -7,7 +7,7 @@ */ // Load all Field module hooks for File. -require(DRUPAL_ROOT . '/modules/file/file.field.inc'); +module_load_include('inc', 'file', 'file.field'); /** * Implement hook_menu(). |