
07-14-2009, 08:04 PM
|
 |
|
|
Join Date: Mar 2004
Location: Wuppertal, NRW, Germany
Posts: 1,541
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by cellarius
Uh - I don't get that error... on neither of my boards. Since there's no line 458 in the plugin, I do not know exactly which of the two foreach statements in the plugin might be responsible. Since this only happens after upgrade, probably the newly added  Can't see what might be causing it at the moment.
Please try the following: in the plugin add
Code:
$array_discussionread = array();
before
Code:
while ($array = $db->fetch_array($result_discussionread))
Are you using PHP 4 or PHP 5?
If the above does not fix it, please try to replace
Code:
foreach ($array_discussionread[$cel_groups['groupid']] as $discussions)
with
Code:
foreach ((array) $array_discussionread[$cel_groups['groupid']] as $discussions)
|
Quote:
Originally Posted by redlabour
PHP5 - the second Hint works now! 
|
Quote:
Originally Posted by cellarius
Good to know. Will include this into the package and then send an upgrade notification 
|
It is still not included in the new Update!!!
|