Added a message for users that haven't created a header.inc.php file yet

This commit is contained in:
jengo 2001-01-13 23:45:27 +00:00
parent 391dbe96b5
commit 5174d4a86c

View File

@ -12,6 +12,12 @@
/* $Id$ */
if (! is_file("header.inc.php")) {
echo '<center>It appears that phpGroupWare is not setup yet, please click <a href="setup/index.php">'
. 'here</a>.</center>';
exit;
}
if (!isset($sessionid) || !$sessionid) {
Header("Location: login.php");
exit;