diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-08-29 05:46:04 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-08-29 05:46:04 +0000 |
commit | 0597c9e48a895603f97632741231946cf6ba24e3 (patch) | |
tree | 87e1164ba6d20647b986351c662ad4df6d529500 /modules/forum/forum.module | |
parent | fb0275fa6a7d67f80bb865deb25f66707082eb34 (diff) | |
download | brdo-0597c9e48a895603f97632741231946cf6ba24e3.tar.gz brdo-0597c9e48a895603f97632741231946cf6ba24e3.tar.bz2 |
- Patch #560746 by dropcube: rename hook_block_list() to hook_block_info() for consistency in the API.
Diffstat (limited to 'modules/forum/forum.module')
-rw-r--r-- | modules/forum/forum.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module index c576effc9..d18be27b7 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -476,9 +476,9 @@ function forum_form_alter(&$form, $form_state, $form_id) { } /** - * Implement hook_block_list(). + * Implement hook_block_info(). */ -function forum_block_list() { +function forum_block_info() { $blocks['active']['info'] = t('Active forum topics'); $blocks['new']['info'] = t('New forum topics'); return $blocks; |