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

ChrisKennedy’s picture

Status: Active » Fixed

Ah apparently we forgot the closing tag from http://drupal.org/node/133470

Thanks for pointing it out - fixed. http://drupal.org/cvs?commit=67890

Anonymous’s picture

Status: Fixed » Closed (fixed)