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
|
Fine! It's work! Thanks a lot!