Problem
If you got this error on top of the page when you click Advanced Search on the forums:
Warning: Declaration of vBForum_Item_SocialGroupMessage::getLoadQuery() should be compatible with vB_Model::getLoadQuery($required_query = '', $force_rebuild = false) in \wwwroot\packages\vbforum\item\socialgroupmessage. php on line 261
Warning: Declaration of vBForum_Item_SocialGroupDiscussion::getLoadQuery() should be compatible with vB_Model::getLoadQuery($required_query = '', $force_rebuild = false) in \wwwroot\packages\vbforum\item\socialgroupdiscussi on.php on line 337
Solution
add two line in class_core.php file
In class_core.php locate lines 5683-5685
Code:
case E_NOTICE:
// Just ignore these completely //
break;
Add this
Code:
case E_NOTICE:
case E_STRICT;
case E_DEPRECATED;
// Just ignore these completely //
break;
Bookmarks