The board specific headers are triggered by global variables ($Board,$fheader) being set before the call to send_header.<br /><br /><br /><br />To have IIP send a specific header we need to define these variables before calling the function.<br /><br />Example -<br /><br />In your IIP index.php file find these lines:<br /><br />
<br /> // send the header<br /> $config['iip_call'] = "1";<br /> $html = new html;<br /> $html -> send_header($config['title'],$Cat,0,$user);<br /> list($tbopen,$tbclose) = $html -> table_wrapper();<br />
<br /><br />and change them to these -<br /><br />
<br /> // send the header<br /> $Board = "iip";<br /> $fheader = "1";<br /> $config['iip_call'] = "1";<br /> $html = new html;<br /> $html -> send_header($config['title'],$Cat,0,$user);<br /> list($tbopen,$tbclose) = $html -> table_wrapper();<br />
<br /><br />When $fheader is set it signals the send_header function to use the $Board header which should be named header_iip.php and be located in your /includes directory.<br /><br /><br />I haven't tested this but as far as I can tell it should work. Hope this helps. <img src="/forum/images/graemlins/smile.gif" alt="" /><br /><br />