[Lambda-cvs] lambda/includes bootstrap.php,1.9,1.10 config.php-dist,1.7,1.8
Status: Pre-Alpha
Brought to you by:
ariejan
From: Ariejan de V. <ar...@us...> - 2004-07-08 09:52:18
|
Update of /cvsroot/lambda/lambda/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14548/includes Modified Files: bootstrap.php config.php-dist Log Message: * Added *very* basic GUI * Added client/admin login and logout functionality * Updated stylesheet Index: config.php-dist =================================================================== RCS file: /cvsroot/lambda/lambda/includes/config.php-dist,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** config.php-dist 7 Jul 2004 14:07:44 -0000 1.7 --- config.php-dist 8 Jul 2004 09:52:04 -0000 1.8 *************** *** 90,92 **** /* Temporary directory for Lambda */ define('LAMBDA_TMP', LAMBDA_PATH . "tmp/"); ! ?> --- 90,92 ---- /* Temporary directory for Lambda */ define('LAMBDA_TMP', LAMBDA_PATH . "tmp/"); ! ?> \ No newline at end of file Index: bootstrap.php =================================================================== RCS file: /cvsroot/lambda/lambda/includes/bootstrap.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** bootstrap.php 7 Jul 2004 13:30:51 -0000 1.9 --- bootstrap.php 8 Jul 2004 09:52:04 -0000 1.10 *************** *** 41,44 **** --- 41,51 ---- $handler->debug("Handler class loaded successfully", 2); + /* Include Client Class */ + require(LAMBDA_CLASS . "lambdaClient.class.php"); + + /* Lambda MySQLi Class */ + require(LAMBDA_CLASS . "lambdaMySQLi.class.php"); + $mysqli = @new lambdaMySQLi(); + /* Lambda Session handler */ require(LAMBDA_CLASS . "lambdaSession.class.php"); *************** *** 49,62 **** $template = new lambdaTemplate(); - /* Lambda MySQLi Class */ - require(LAMBDA_CLASS . "lambdaMySQLi.class.php"); - $mysqli = @new lambdaMySQLi(); - /* Include Component Handler */ require(LAMBDA_CLASS . "lambdaComponentHandler.class.php"); $comhandler = new lambdaComponentHandler(); - /* Include Client Class */ - require(LAMBDA_CLASS . "lambdaClient.class.php"); ?> \ No newline at end of file --- 56,63 ---- |