diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-09-10 08:43:46 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-09-10 08:43:46 +0000 |
commit | 66317fbea078bb9d5dedb9463bef95070525ebb2 (patch) | |
tree | a5d42ab3fee3ab05ca5d8436d6ab7e181d312a9b | |
parent | 029c48c68d7f4f2bc94e93e3333908ca158433c5 (diff) | |
download | brdo-66317fbea078bb9d5dedb9463bef95070525ebb2.tar.gz brdo-66317fbea078bb9d5dedb9463bef95070525ebb2.tar.bz2 |
- Patch #453588 by alienbrain, Jody Lynn: poll use for hook_link() no longer applies.
-rw-r--r-- | modules/poll/poll.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/poll/poll.module b/modules/poll/poll.module index 3d8d281fa..83f4c0a65 100644 --- a/modules/poll/poll.module +++ b/modules/poll/poll.module @@ -569,7 +569,7 @@ function poll_block_latest_poll_view($node) { $node->readmore = FALSE; $node->teaser = ''; - $links = module_invoke_all('link', 'node', $node, 1); + $links = array(); $links[] = array('title' => t('Older polls'), 'href' => 'poll', 'attributes' => array('title' => t('View the list of polls on this site.'))); if ($node->allowvotes) { $links[] = array('title' => t('Results'), 'href' => 'node/' . $node->nid . '/results', 'attributes' => array('title' => t('View the current poll results.'))); |