Quote:
Originally Posted by ZexTasy
Check the plugin for the hook "showthread_query"
Current Code:
Code:
$ids .= ",$thread[firstpostid]";
$postids = "post.postid IN (0" . $ids . ")";
Should be changed to:
Code:
$ids[] = $thread[firstpostid];
$postids = "post.postid IN (0" . implode(',', $ids) . ")";
I use Legacy Postbit, I haven't tested anything else, but for me it works now in vbulletin 4.0.
- ZexTasy
|

Even with this altered, v4.0.2 Database Errors in any of my forums where CFP is switched on, regardless of Article Style.