mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-26 04:41:41 +02:00
Fix for new vars
This commit is contained in:
parent
880bf3a86b
commit
43a9aceecf
@ -24,8 +24,9 @@
|
|||||||
|
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
$d1 = strtolower(substr($phpgw_info["server"]["app_inc"],0,3));
|
$d1 = strtolower(substr(PHPGW_APP_INC,0,3));
|
||||||
if($d1 == "htt" || $d1 == "ftp") {
|
if($d1 == 'htt' || $d1 == 'ftp')
|
||||||
|
{
|
||||||
echo "Failed attempt to break in via an old Security Hole!<br>\n";
|
echo "Failed attempt to break in via an old Security Hole!<br>\n";
|
||||||
exit;
|
exit;
|
||||||
} unset($d1);
|
} unset($d1);
|
||||||
@ -33,12 +34,14 @@
|
|||||||
/**************************************************************************\
|
/**************************************************************************\
|
||||||
* Include the apps footer files if it exists *
|
* Include the apps footer files if it exists *
|
||||||
\**************************************************************************/
|
\**************************************************************************/
|
||||||
if (file_exists ($phpgw_info["server"]["app_inc"]."/footer.inc.php")
|
if (file_exists (PHPGW_APP_INC . '/footer.inc.php') &&
|
||||||
&& $phpgw_info["flags"]["currentapp"] != "home"
|
$phpgw_info['flags']['currentapp'] != 'home' &&
|
||||||
&& $phpgw_info["flags"]["currentapp"] != "login"
|
$phpgw_info['flags']['currentapp'] != 'login' &&
|
||||||
&& $phpgw_info["flags"]["currentapp"] != "logout"
|
$phpgw_info['flags']['currentapp'] != 'logout' &&
|
||||||
&& (!isset($phpgw_info["flags"]["noappfooter"]) || !$phpgw_info["flags"]["noappfooter"])) {
|
(!isset($phpgw_info['flags']['noappfooter']) ||
|
||||||
include($phpgw_info["server"]["app_inc"]."/footer.inc.php");
|
!$phpgw_info['flags']['noappfooter']))
|
||||||
|
{
|
||||||
|
include(PHPGW_APP_INC . '/footer.inc.php');
|
||||||
}
|
}
|
||||||
|
|
||||||
parse_navbar_end();
|
parse_navbar_end();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user