I have a piece of code that is only suppose to run when the $denyadminip is put into a template. For some reason it is running everywhere on the forums. I know I set it to global, but it should only run when I put $denyadminip. Anyway here is the code:
Code:
<hookname>global_start</hookname>
<phpcode><![CDATA[ob_start();
include('allowip.php');
$denyadminip = ob_get_contents();
ob_end_clean();]]></phpcode>