Quote:
Originally Posted by Dave
This problem happens because the blog files don't match the structure of the new vBulletin 3 files.
In /includes/class_bbcode_blog.php find parent::vB_BbCodeParser around line 24 and replace it with parent::__construct
That may not fix all possible other errors though.
|
Quote:
Originally Posted by motd2
includes/class_dm_blog_user.php
line 106-108
Code:
function vB_DataManager_Blog_User(&$registry, $errtype = ERRTYPE_STANDARD)
{
parent::vB_DataManager($registry, $errtype);
need
Code:
function __construct(&$registry, $errtype = ERRTYPE_STANDARD)
{
parent::__construct($registry, $errtype);
|
Thank you so so much . After replace yours code, a Blog went back to normal.
I really appreciated all your advised.
Kind Regards,