View Full Version : Optional Header.php
photocroatia
12th of February 2005 (Sat), 20:23
Hi Pekka,
Is it possible to have the header.php only called from the photo.php, I don't want the header.php script called from the other locations.
Thank you!
Pekka
13th of February 2005 (Sun), 10:18
In fetchsettings.php find
function ee_get_headerfooter ($switch,$type) {
global $toroot;
global $lang;
global $pass;
global $exhibition;
global $photo;
global $s_include_header;
global $s_include_footer;
replace it with
function ee_get_headerfooter ($switch,$type) {
global $toroot;
global $lang;
global $pass;
global $exhibition;
global $photo;
global $s_include_header;
global $s_include_footer;
global $currentpage;
if ($currentpage != "photo") {
return;
}
vBulletin® v3.6.12, Copyright ©2000-2012, Jelsoft Enterprises Ltd.