Warning: Assigning the return value of new by reference is deprecated in ....Bla Bla Bla
How to fix.
Open the file, includes/vfchh/php/vfc_hide_core.php, in that file find the following:
Code:
$this->registry =& $registry;
Replace with:
Code:
$this->registry = $registry;
Find:
Code:
$permission =& $this->check_permission($foruminfo);
Replace it with this:
Code:
$permission = $this->check_permission($foruminfo);