Just installed this tonight and it's completely stopped one of my own custom plugins working. It's quite a simple plugin to include a php file.
Code:
ob_start();
$getfile = "/var/www/vhosts/*****.com/httpdocs/includes/getForumImage.php";
$PageTitle = $foruminfo[title_clean];
require_once($getfile);
$php_include = ob_get_contents();
ob_end_clean();
vB_Template::preRegister('headinclude',array('php_include' => $php_include));
Any ideas why this would stop working when this product is enabled?