Xenon your new version introduces some more table_prefix bugs that cause MySQL errors. The problem is that you have to use the
AS clause to create an alias so you can use things like post.whatever in the rest of the query without having to put table_prefix all over the place. Here's an example:
PHP Code:
SELECT postid, pagetext, post.userid
FROM " . TABLE_PREFIX . "post AS post
You only need to do this on the SELECT query.