quick fix for error after vbulletin 4.0.4 update:
"Fatal error: Call to undefined method vB_BlockType_Vbsoccerentries::getData() ..."
find in file includes/block/vbsoccerentries.php:
PHP Code:
/**
* Fetches the standard page view for a block.
*
* @param void
* @return mixed string|false
*/
public function getHTML()
{
and
replace with:
PHP Code:
/**
* @since vbulletin 4.0.4
*/
public function getData()
{
return array();
}
/**
* Fetches the standard page view for a block.
*
* @param array $data
* @return mixed string|false
*/
public function getHTML($data = array())
{