Quote:
Originally Posted by Get Shorty
This hack causes a problem with the "Direct Category Links" feature of vbSEO. Here is the fix:
Original code:
Code:
if (
$vbulletin->userinfo['userid'] == 0
AND $vbulletin->options['trg']
AND $vbulletin->options['trgspiders']
)
{
define('SKIP_DEFAULTDATASTORE',true);
$vbulletin->datastore->fetch(array('wol_spiders'));
}
Changed to:
Code:
if (
$vbulletin->userinfo['userid'] == 0
AND $vbulletin->options['trg']
AND $vbulletin->options['trgspiders']
)
{
define('SKIP_DEFAULTDATASTORE',true);
$__temp_fc = $vbulletin->forumcache;
$vbulletin->datastore->fetch(array('wol_spiders'));
$vbulletin->forumcache = $__temp_fc;
}
Credit to: Oleg Ignatiuk
|
Where are you putting this in the 1.10 version? Or did you implement this in 1.10 paul? I was unclear on this and I use vBSEO as well.