Quote:
Originally Posted by Carnage-
Been busy graduating this week; I did however update to 4.0.4 pl1 and the issue with double posting seemed to disappear. I will be updating to 4.0.5 asap and see if I can figure whats causing the blank articles; I suspect it will be an issue with caching. (Try clearing your CMS cache and see if that fixes it.)
|
The double posting issue still exists in 4.0.5. The fix below is for double posting and also fixes blank or missing comments on our installation.
Change the code in the clear cache plugin to:
PHP Code:
if (THIS_SCRIPT == 'vbcms') {
$vbulletin->options['vbcmsforumid'] = $foruminfo['forumid'];
}
if (method_exists(vB_Cache::instance(), 'clean')) {
vB_Cache::instance()->clean(false);
}
It will only run when dealing with the CMS fixing the bug with the search indexer(array_key_exists issue) being broken and the CMS cache will still get cleared.