diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-03-07 18:44:31 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-03-07 18:44:31 +0000 |
commit | 157dc1e0b1d668ccce58ea06fe48e8f0191bfcd7 (patch) | |
tree | 981965bba5905444b0a4db61ab2830acc8cd0200 /modules/system | |
parent | ff640c1fbb01b8df3b728bb34b8491d0499bd74f (diff) | |
download | brdo-157dc1e0b1d668ccce58ea06fe48e8f0191bfcd7.tar.gz brdo-157dc1e0b1d668ccce58ea06fe48e8f0191bfcd7.tar.bz2 |
#734942 by Dave Reid: hook_token_info_alter() should be included in the 'token' group in system_hook_info().
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.module | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index e0500e70f..240b1392d 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -239,6 +239,9 @@ function system_hook_info() { $hooks['token_info'] = array( 'group' => 'tokens', ); + $hooks['token_info_alter'] = array( + 'group' => 'tokens', + ); $hooks['tokens'] = array( 'group' => 'tokens', ); |