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)