Quote:
Originally Posted by nexialys
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:
what's that
|
The File is OK. No problem there.
In my init.php i have 5 instances of $optionsfound (listing the more relevants):
PHP Code:
// load options, special templates and default language
$optionsfound = false;
if (defined('VB3UPGRADE'))
.............
PHP Code:
// get $vboptions array
case 'options':
{
$vboptions = unserialize($storeitem['data']);
if (is_array($vboptions) AND isset($vboptions['languageid']))
{
$optionsfound = true;
}
.............
PHP Code:
// Fatal Error
if (!$optionsfound)
{
require_once('./includes/adminfunctions.php');
require_once('./includes/functions.php');
$vboptions = build_options(
..............
You think that i can try the hack in this init? Or i need wait to upgrade vbulletin?