mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-24 23:08:53 +01:00
add isset check for flags noheader and noappheader
This commit is contained in:
parent
40ceefcb57
commit
0143ee3a8f
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user