
12-23-2009, 01:53 PM
|
|
|
Join Date: Aug 2008
Posts: 297
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by The Geek
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.
|
Sure, but where is it?
Quote:
Can you edit your AME - Auto COnvert URLs plugin and replace it with this:
|
|