I had the following custom plugin in VB3.8 global that referenced a PHP file and i simply called the VB paramater in the style but after the upgrade this doesn't seem to work anymore?
What is new syntax to make this work?
PHP Code:
ob_start();
include('/home/me/www/gallery/inc_features1.php');
$include_latestpics = ob_get_contents();
ob_end_clean();
ob_start();
include('/home/me/www/gallery/inc_features0.php');
$include_latestpics2 = ob_get_contents();
ob_end_clean();