Quote:
Originally Posted by CharlieDelta
When trying to add new entry I get this error;
Code:
Fatal error: Call to undefined method vB_DataManager::vB_DataManager() in ../forums/includes/class_dm_vblinklist_entry.php on line 95
4.2.5
|
try
/includes/
class_dm_vblinklist_entry.php
find
PHP Code:
function vB_DataManager_vBLinklist_Entry(&$registry, $errtype = ERRTYPE_STANDARD)
{
parent::vB_DataManager($registry, $errtype);
($hook = vBulletinHook::fetch_hook('vblinklist_entrydata_start')) ? eval($hook) : false;
}
replace with:
PHP Code:
function __construct(&$registry, $errtype = ERRTYPE_STANDARD) // rbc
{
parent::__construct($registry, $errtype); // rbc
($hook = vBulletinHook::fetch_hook('vblinklist_entrydata_start')) ? eval($hook) : false;
}
give it a try ....