In the [high]showthread_post_start[/high] plugin, change:
PHP Code:
if ($showvotedtemplate) {
if ($pollinfo['active']) {
unset($poll);
eval('$poll = "' . fetch_template('pollresult_voted') . '";');
}
}
to:
PHP Code:
if ($showvotedtemplate) {
if ($pollinfo['active']) {
unset($poll);
if ($vbulletin->userinfo['userid']) {
eval('$poll = "' . fetch_template('pollresult_voted') . '";');
} else {
$poll = '';
}
}
}
That should work
Chris