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.attach.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.attach.inc')
-rw-r--r-- | modules/field/field.attach.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/field/field.attach.inc b/modules/field/field.attach.inc index b95d083d0..c10f85085 100644 --- a/modules/field/field.attach.inc +++ b/modules/field/field.attach.inc @@ -661,7 +661,7 @@ function _field_attach_preprocess($obj_type, &$object) { * * TODO D7: We do not yet know if this really belongs in Field API. */ -function _field_attach_prepare_translation(&$node) { +function _field_attach_prepare_translation($node) { // Prevent against invalid 'nodes' built by broken 3rd party code. if (isset($node->type)) { $type = content_types($node->type); |