Quote:
Originally Posted by MarcoH64
ACP->vBulletin Settings-->Thread of the Week-->uCah integration: No
That should solve your problem.
|
Thanks Marco,
The message changed shape a tad:
Warning: Invalid argument supplied for foreach() in
/home/soundchi/public_html/loud_lounge/includes/cron/threadoftheweek.php on line
358
my file looks from row 358 like:
PHP Code:
foreach ($svotes AS $key=>$values)
{
if ($count != 0)
{
--$count;
++$position;
continue 1;
}
if ($values['votes'] == 0) // No more winners
break;
++$position;
$winners[$position] = $values['polloption'];
// More sharing the same number of votes?
$count = 0;
while (++$count)
{
if ($svotes[$key + $count]['votes'] == $values['votes'])
{
$winners[$position] .= "," . $svotes[$key + $count]['polloption'];
}
else
{
--$count;
break 1;
}
}
}
How critical is this? The cron was executed ok and the poll apeaed at the wanted forum.
Regs,
-Mika