diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-08-31 05:35:47 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-08-31 05:35:47 +0000 |
commit | 26a5f0408b8db92f85af90695269cc69c67e41bf (patch) | |
tree | 87fd6e1c40a5fa1fb0c1eb43fdce112976633d58 /modules/field/field.info.inc | |
parent | 859d158d4550e9972f305413b2fba0253a03675e (diff) | |
download | brdo-26a5f0408b8db92f85af90695269cc69c67e41bf.tar.gz brdo-26a5f0408b8db92f85af90695269cc69c67e41bf.tar.bz2 |
- Patch #563742 by plach: hotfix for broken hook_entity_info_alter().
Diffstat (limited to 'modules/field/field.info.inc')
-rw-r--r-- | modules/field/field.info.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/field/field.info.inc b/modules/field/field.info.inc index 0d895fa88..7ea50ee1d 100644 --- a/modules/field/field.info.inc +++ b/modules/field/field.info.inc @@ -150,7 +150,7 @@ function _field_info_collate_types($reset = FALSE) { } } } - drupal_alter('fieldable_info', $info['fieldable types']); + drupal_alter('entity_info', $info['fieldable types']); cache_set('field_info_types', $info, 'cache_field'); } |