In advpoll.module, line 59:
$output .= '<p>'. l(t('Older polls'), 'polls', array('class' => 'old-polls', 'title' => t('View the list of polls on this site.')));
I'm pretty sure this is supposed to be:
$output .= '<p>'. l(t('Older polls'), 'polls', array('class' => 'old-polls', 'title' => t('View the list of polls on this site.'))).'</p>';
Note the missing closing "p" tag in the existing code. Hope this helps!
Comments
Comment #1
ChrisKennedy commentedAh apparently we forgot the closing tag from http://drupal.org/node/133470
Thanks for pointing it out - fixed. http://drupal.org/cvs?commit=67890
Comment #2
(not verified) commented