From 5174d4a86cd02cc18cfffb786c16fd740fe920a2 Mon Sep 17 00:00:00 2001 From: jengo Date: Sat, 13 Jan 2001 23:45:27 +0000 Subject: [PATCH] Added a message for users that haven't created a header.inc.php file yet --- index.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/index.php b/index.php index 5be30e065e..fe7fff859f 100755 --- a/index.php +++ b/index.php @@ -12,6 +12,12 @@ /* $Id$ */ + if (! is_file("header.inc.php")) { + echo '
It appears that phpGroupWare is not setup yet, please click ' + . 'here.
'; + exit; + } + if (!isset($sessionid) || !$sessionid) { Header("Location: login.php"); exit;