Quote:
Originally Posted by Skyline_GT
Quote:
I'm getting the Warning: Invalid argument supplied for foreach() in /includes/functions_post_thanks.php on line 183 error
Did a recounter and still having the issue
Please help
|
I also have this problem.
|
Here's a fix a member of my board came up with. Hope it helps someone:
"it seems that there were empty arrays (i.e. lists of items) being passed to the function that generated the warning message. Honestly, I have no idea where these arrays were coming from or whether it is even all right for them to be empty - but I've asked the function not to try to process such arrays in future.
See board/includes/functions_post_thanks.php
After line 182
Code:
//seems to be a problem when $thanks has no rows - so let's patch the problem
//I have no idea about the underlying causes of this problem.
if ($number_rows > 0)
{
//</SLB
foreach ($thanks AS $thank)
{
if ($cmpt<$number_rows)
{
$virg=",";
}
else
{
$virg="";
}
if (show_thanks_date($forumid))
{
$date_thank = vbdate($vbulletin->options['dateformat'], $thank['date'], true);
}
eval('$liste_user .= " ' . fetch_template('post_thanks_box_bit') . '";');
$cmpt++;
}
} //