egroupware_official/phpgwapi/inc/footer.inc.php

50 lines
2.6 KiB
PHP
Raw Normal View History

2000-12-18 21:09:56 +01:00
<?php
/**************************************************************************\
2001-01-13 11:18:50 +01:00
* phpGroupWare API - phpgwapi footer *
2000-12-18 21:09:56 +01:00
* This file written by Dan Kuykendall <seek3r@phpgroupware.org> *
2001-01-13 11:18:50 +01:00
* and Joseph Engo <jengo@phpgroupware.org> *
* Closes out interface and db connections *
* Copyright (C) 2000, 2001 Dan Kuykendall *
* -------------------------------------------------------------------------*
* This library is part of the phpGroupWare API *
* http://www.phpgroupware.org/api *
* ------------------------------------------------------------------------ *
2001-01-13 11:18:50 +01:00
* This library is free software; you can redistribute it and/or modify it *
* under the terms of the GNU Lesser General Public License as published by *
* the Free Software Foundation; either version 2.1 of the License, *
* or any later version. *
* This library is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* See the GNU Lesser General Public License for more details. *
* You should have received a copy of the GNU Lesser General Public License *
* along with this library; if not, write to the Free Software Foundation, *
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
2000-12-18 21:09:56 +01:00
\**************************************************************************/
/* $Id$ */
$d1 = strtolower(substr($phpgw_info["server"]["app_inc"],0,3));
if($d1 == "htt" || $d1 == "ftp") {
echo "Failed attempt to break in via an old Security Hole!<br>\n";
exit;
} unset($d1);
/**************************************************************************\
* Include the apps footer files if it exists *
\**************************************************************************/
if (file_exists ($phpgw_info["server"]["app_inc"]."/footer.inc.php")
&& $phpgw_info["flags"]["currentapp"] != "home"
&& $phpgw_info["flags"]["currentapp"] != "login"
2001-01-11 02:10:08 +01:00
&& $phpgw_info["flags"]["currentapp"] != "logout"
&& (!isset($phpgw_info["flags"]["noappfooter"]) || !$phpgw_info["flags"]["noappfooter"])) {
2000-12-18 21:09:56 +01:00
include($phpgw_info["server"]["app_inc"]."/footer.inc.php");
}
2001-01-06 10:20:33 +01:00
parse_navbar_end();
2000-12-18 21:09:56 +01:00
$phpgw->db->disconnect();
?>
</BODY>
</HTML>