Admin |
10-22-2001 05:05 PM |
Small addon re floleb7's first post.
This will display the number of vote rs with multi choice polls, instead of number of votes.
In showthread.php, find this:
Code:
$counter=0;
while ($counter++<$pollinfo[numberoptions]) {
$pollinfo[numbervotes]+=$splitvotes[$counter-1];
}
and add this right below it:
Code:
if ($pollinfo[multiple]!=0) {
$getvoters=$DB_site->query_first("SELECT COUNT(DISTINCT(userid)) AS voters FROM pollvote WHERE pollid='$pollid'");
$pollinfo[voters]=$getvoters[voters];
} else {
$pollinfo[voters]=$pollinfo[numbervotes];
}
Now in showthread_pollresults template, replace $pollinfo[numbervotes] votes with $pollinfo[voters] voters.
Easy wasn't it? :)
|