Closed (fixed)
Project:
Advanced Poll
Version:
5.x-1.0-beta4
Component:
Code
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
18 May 2007 at 23:41 UTC
Updated:
2 Jun 2007 at 01:11 UTC
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