just looked at
http://www.iphonemodding.com/forum/c...h-Make-It-Work (the thread you screenshotted) in my browser (FF3.6.7, winxp) I can view the comments fine.
I think I may be close to finding the source of the other problems with this mod; I went into the source code and compared it side by side with vb 4.0.3 Where once there was this:
Code:
vb_Search_Indexcontroller_Queue::indexQueue('vBForum', 'Post', 'index', $msgid);
There is now this:
Code:
if (isset($vbulletin->options['vbcmsforumid']) AND $foruminfo['forumid'] == $vbulletin->options['vbcmsforumid'])
{
vb_Search_Indexcontroller_Queue::indexQueue('vBCms', 'CmsComment', 'index', $msgid);
}
else
{
vb_Search_Indexcontroller_Queue::indexQueue('vBForum', 'Post', 'index', $msgid);
}
It seems that there is an intention to separate forum posts and CMS comments even further as they are now different content types. I'm sure that this is the root of the issues with this mod, however I've yet to figure out what its doing to cause them.