Quote:
Originally Posted by movslow
Followed instructions.
Did a test run before the actual update, received this.

|
hmmm... that doesn't make any sense. I only ever use require_once to include class files and the calls look identical.
Can you edit your AME - Auto COnvert URLs plugin and replace it with this:
PHP Code:
if (class_exists("vB"))
{
$reg = &vB::$vbulletin;
}
else
{
global $vbulletin;
$reg = &$vbulletin;
}
if (!is_object($reg->AME))
{
if (!class_exists("AME_prep_base"))
{
require_once(DIR . '/includes/ame_prep.php');
}
$reg->AME = new AME_message_prep($reg);
}
$reg->AME->preparse($pagetext);
$providers = $reg->AME->info['providers'];
And then try it again? This just doesn't assert the class.