Hi,
I've installed the hack, but when I click on any thread I get the following error:
Quote:
Parse error: parse error, unexpected T_ELSE in /home/talkwres/public_html/forum/showthread.php on line 649
|
Heres that part of the code from the file:
PHP Code:
//Now we check if the user has voted or not
if ($showresults OR $uservoted)
{ // user did vote or poll is closed if ($value == 0 || $noshow == 1)
{
$option['percent'] = 0;
$option['votes'] = 0;
}
else //line 649//
{
$option['percent'] = vb_number_format($value / $pollinfo['numbervotes'] * 100, 2);
}
$option['graphicnumber'] = $option['number'] % 6 + 1;
$option['barnumber'] = round($option['percent']) * 2;
Any suggestions?
Thanks.