Polls were being displayed even when the poll question was blank.

Simple fix (sorry I don't know how to make a patch)

line 121:

replaced:
return theme('field', $node, $field, $items, $teaser, $page);
with
if ($items[0]['question'] == '') {
return '';
} else {
return theme('field', $node, $field, $items, $teaser, $page);
}

Comments

bryan kennedy’s picture

Status: Needs work » Postponed (maintainer needs more info)

You can check out the instructions here to make a patch - http://drupal.org/patch/apply

bryan kennedy’s picture

We are no longer supporting the Drupal 5 version of this module and there hasn't been any activity on this issue for several years, so I am closing as won't fix.

bryan kennedy’s picture

Status: Postponed (maintainer needs more info) » Closed (won't fix)

Woops, forgot to change status.