confused are you saying we need to change line 1
from
Code:
<?php if (!defined('VB_ENTRY')) die('Access denied.');
to
Code:
protected function getLoadQuery($required_query = self::QUERY_BASIC, $force_rebuild = false)
in the 2 item files
-----
ok found answer in another thread
Quote:
1. - Edit the files "socialgroupmessage.php" and "socialgroupdiscussion.php" found in "packages/vbforum/item/"
2. - The original function reads:
protected function getLoadQuery($required_query, $force_rebuild = false)
3. - Change the function to this:
protected function getLoadQuery($required_query = self::QUERY_BASIC, $force_rebuild = false)
|
i have also replaced lines 5688 through to 5692 inclusive of the class_core.php file with the code
Code:
case E_NOTICE:
case E_STRICT:
case E_DEPRECATED:
// Just ignore these completely //
break;
this replaced
Code:
case E_NOTICE:
// Just ignore these completely //
break;
case E_WARNING: