Update of /cvsroot/phpslash/phpslash-ft/public_html
In directory usw-pr-cvs1:/tmp/cvs-serv28663/public_html
Modified Files:
config.php3 index.php3
Log Message:
Index: config.php3
===================================================================
RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config.php3,v
retrieving revision 1.127
retrieving revision 1.128
diff -C2 -d -r1.127 -r1.128
*** config.php3 8 Feb 2002 21:50:10 -0000 1.127
--- config.php3 8 Feb 2002 22:17:28 -0000 1.128
***************
*** 18,22 ****
/**** START DEBUGING - Comment or delete this for production! ****/
! ini_set('error_reporting', 'E_ALL');
//ini_set('error_reporting', 'E_ALL~E_NOTICE');
/**** END DEBUGING ****/
--- 18,22 ----
/**** START DEBUGING - Comment or delete this for production! ****/
! //ini_set('error_reporting', 'E_ALL');
//ini_set('error_reporting', 'E_ALL~E_NOTICE');
/**** END DEBUGING ****/
Index: index.php3
===================================================================
RCS file: /cvsroot/phpslash/phpslash-ft/public_html/index.php3,v
retrieving revision 1.53
retrieving revision 1.54
diff -C2 -d -r1.53 -r1.54
*** index.php3 3 Feb 2002 02:49:40 -0000 1.53
--- index.php3 8 Feb 2002 22:17:28 -0000 1.54
***************
*** 1,9 ****
<?php
// $Id$
! $pagetitle="Home"; # The name to be displayed in the header
! $xsiteobject = "Home Page"; #This Defines The META Tag Object Type
require("config.php3");
page_open(array("sess"=>"slashSess","auth"=>"slashAuth","perm"=>"slashPerm"));
! $auth->login_if($login);
// Objects
--- 1,14 ----
<?php
// $Id$
! $pagetitle = "Home"; // The name to be displayed in the header
! $xsiteobject = "Home Page"; // This Defines The META Tag Object Type
!
require("config.php3");
+
page_open(array("sess"=>"slashSess","auth"=>"slashAuth","perm"=>"slashPerm"));
!
! if(!empty($HTTP_GET_VARS['login'])) {
! $auth->login_if($HTTP_GET_VARS['login']);
! }
// Objects
|