nexialys |
01-25-2005 12:42 PM |
Quote:
Originally Posted by Acido
I cant found this code in includes/init.php
PHP Code:
$optionsfound = !empty($vboptions);
|
search simply for $optionsfound ... if you don't have it, you have a strange vbulletin version, because this variable is there since 3.0... line 549 of the actual 3.0.6...
BTW, the instructions are strange.. maybe thefile is corrupted ?!
look:
Quote:
#-------------------==={FIND}===------------------#
################################################## #
$optionsfound = !empty($vboptions);
################################################## #
#-------------==={REPLACE IT WITH}===-------------#
################################################## #
// START Hack: datastore_cache
//- $optionsfound = !empty($vboptions);
if (is_array($vboptions) AND isset($vboptions['languageid']))
{
$optionsfound = true;
}
if ($url == 'index.php')
{
$url = "$vboptions[forumhome].php";
}
$versionnumber = &$vboptions['templateversion'];
// END Hack: datastore_cache
", $spiderpattern) . ')#';
################################################## #
|
what's that
Quote:
", $spiderpattern) . ')#';
|
|