Update of /cvsroot/stack/stack-1-0
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31158
Modified Files:
index.php
Log Message:
Index: index.php
===================================================================
RCS file: /cvsroot/stack/stack-1-0/index.php,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** index.php 14 Jul 2005 07:27:03 -0000 1.21
--- index.php 14 Jul 2005 17:46:58 -0000 1.22
***************
*** 30,34 ****
session_start();
! include('stackstd.php');
$default_action = 'loginscreen';
include_once($stack_root.'/frontend_general/front_end_display.php');
--- 30,41 ----
session_start();
!
! if (file_exists('stackstd.php')) {
! include('stackstd.php');
! } else {
! echo "STACK is not correctly installed.";
! die();
! }
!
$default_action = 'loginscreen';
include_once($stack_root.'/frontend_general/front_end_display.php');
|