diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-05-09 18:28:13 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-05-09 18:28:13 +0000 |
commit | 0e0ca3b589668041022e3191d749d4c5acaee6e9 (patch) | |
tree | 9e1af632339babc89bb2d5d0a0c32eaf5419a014 /modules/field/field.autoload.inc | |
parent | 557128c9190b814d1261e30a4b9a760699b92a6b (diff) | |
download | brdo-0e0ca3b589668041022e3191d749d4c5acaee6e9.tar.gz brdo-0e0ca3b589668041022e3191d749d4c5acaee6e9.tar.bz2 |
- Patch #457532 by Berdir: more PHP5 'fixes'.
Diffstat (limited to 'modules/field/field.autoload.inc')
-rw-r--r-- | modules/field/field.autoload.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/field/field.autoload.inc b/modules/field/field.autoload.inc index 9ebe204f2..21a8947de 100644 --- a/modules/field/field.autoload.inc +++ b/modules/field/field.autoload.inc @@ -297,7 +297,7 @@ function field_attach_preprocess($obj_type, &$object) { * * This function is an autoloader for _field_attach_prepare_translation() in modules/field/field.attach.inc. */ -function field_attach_prepare_translation(&$node) { +function field_attach_prepare_translation($node) { require_once DRUPAL_ROOT . '/modules/field/field.attach.inc'; return _field_attach_prepare_translation($node); } |