It's a bug that happen only with vB5 in offline mode, if i use vB5 in online mode the plugin goes ok.
Infact the function who give an error is the follow:
Code:
protected function checkForumClosed()
{
if (!defined('BYPASS_FORUM_DISABLED')
AND
!vB::getDatastore()->getOption('bbactive')
AND
!vB::getUserContext()->isAdministrator()
AND
!$this->location['login'] // Login
)
{
return array('option' => 'bbclosedreason');
}
return false;
}