Great hack! one problem, however is that it doesn't work correctly.
It is displaying all votes, regardless of whether they are public or not.
I made the following additions to poll.php
PHP Code:
if ($votes = $DB_site->query_first("SELECT pollid FROM pollvote
WHERE pollid='$pollid' AND voteoption='$tmp'AND SHOWVOTE=1")) {
$votes = $DB_site->query("SELECT * FROM pollvote WHERE poll
id='$pollid' AND voteoption='$tmp' AND SHOWVOTE=1 ORDER BY userid ASC");