add isset check for flags noheader and noappheader

This commit is contained in:
angles 2001-05-17 21:34:43 +00:00
parent 40ceefcb57
commit 0143ee3a8f

View File

@ -91,7 +91,11 @@
}
// If the application has a header include, we now include it
if ($phpgw_info["flags"]["noheader"] && ! $phpgw_info["flags"]["noappheader"]) {
if ((isset($phpgw_info["flags"]["noheader"]) &&
$phpgw_info['flags']['noheader']) &&
(isset($phpgw_info['flags']['noappheader']) &&
!$phpgw_info["flags"]["noappheader"]))
{
}
return $tpl->fp("out","navbar");