Quote:
Originally Posted by Arminios
I installed it like I were supposed to, but got this up when trying to access my page afterwards.
Anyone know what's wrong? Latest version of vBulletin and CMPS
|
The issue is you need to edit cls_warcraft_recruit and perform the following:
Find..
PHP Code:
function setStatus(array $data)
and change it to
PHP Code:
function setStatus($data)
After that, you'll receive an issue on another file as well: recruit_base.php
Find..
PHP Code:
abstract public function setStatus(array $data);
and change it to
PHP Code:
abstract public function setStatus($data);
That should do it for you.