Oh - its breaking something further down because vb doesnt work well with php errors (not that i blame it, shouldnt get the errors
). So thats really only a red herring.
To fix the bug, edit the Render Postbit Trophies plugin and find
PHP Code:
if (array_key_exists($post['userid'], $trophies))
replace with
PHP Code:
if (is_array($trophies) AND array_key_exists($post['userid'], $trophies))
make sure the plugin is enabled again, then both the error and the quick edit stuff will get fixed. let me know if that also repairs the posting weirdness.
ill include this in an update once i have some of the ie7 stuff taken care of