diff options
Diffstat (limited to 'modules/poll.module')
-rw-r--r-- | modules/poll.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/poll.module b/modules/poll.module index 0f587280f..9247f2ed0 100644 --- a/modules/poll.module +++ b/modules/poll.module @@ -544,9 +544,9 @@ function poll_view(&$node, $teaser = FALSE, $page = FALSE, $block = FALSE) { $node->body = $node->teaser = ''; $links = module_invoke_all('link', 'node', $node, 1); - $links[] = array('#title' => t('older polls'), '#href' => 'poll', '#attributes' => array('title' => t('View the list of polls on this site.'))); + $links[] = array('title' => t('older polls'), 'href' => 'poll', 'attributes' => array('title' => t('View the list of polls on this site.'))); if ($node->allowvotes && $block) { - $links[] = array('#title' => t('results'), '#href' => 'node/'. $node->nid .'/results', '#attributes' => array('title' => t('View the current poll results.'))); + $links[] = array('title' => t('results'), 'href' => 'node/'. $node->nid .'/results', 'attributes' => array('title' => t('View the current poll results.'))); } $node->links = $links; |