Scott M. Mcdermott

UNIX Systems & Network Administrator
available for contract or salaried positions

includes.php

<?

/*
 * Since our script is completely bug-free, there are never errors to report, so
 * this should be safe ;)
 */
error_reporting(E_ALL);

/*
 * This set of files is included from both login.php and common.php, and I would
 * really dislike to change them twice, so they both just reference this file.
 */
require_once("include/safe.php");
require_once("include/defines.php");
require_once("include/headfoot.php");
require_once("include/navbar.php");
require_once("include/ldap.php");
require_once("include/usergroup.php");
require_once("include/redirect.php");

?>