Quote:
Originally Posted by myadsl
Solved it thanks...
|
How did you solve it?
I'm having a problem with one of my plug-ins that isn't working properly.
Plugin Code
Code:
ob_start();
require_once('sigStrip.php');
$sigStripPHP = ob_get_contents();
ob_end_clean();
And I'm calling this code in the postbit_legacy template using the following:
$sigStripPHP
A vB guy told me to use $globals['sigStripPHP'] to call it, but I get errors when I go to do that and no posts display.
The sigStrip.php for now just contains the following:
Code:
<?php
echo "Test";
?>
Thanks!