[Lambda-cvs] lambda/includes bootstrap.php,1.8,1.9
Status: Pre-Alpha
Brought to you by:
ariejan
From: Ariejan de V. <ar...@us...> - 2004-07-07 13:31:30
|
Update of /cvsroot/lambda/lambda/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31922 Modified Files: bootstrap.php Log Message: Added Smarty 2.6.3 to Lambda Index: bootstrap.php =================================================================== RCS file: /cvsroot/lambda/lambda/includes/bootstrap.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** bootstrap.php 7 Jul 2004 10:37:50 -0000 1.8 --- bootstrap.php 7 Jul 2004 13:30:51 -0000 1.9 *************** *** 24,27 **** --- 24,29 ---- } + // Auto-start a session + session_start(); /* *************** *** 39,42 **** --- 41,48 ---- $handler->debug("Handler class loaded successfully", 2); + /* Lambda Session handler */ + require(LAMBDA_CLASS . "lambdaSession.class.php"); + $session = new lambdaSession(); + /* Lambda Template Class */ require(LAMBDA_CLASS . "lambdaTemplate.class.php"); *************** *** 45,50 **** /* Lambda MySQLi Class */ require(LAMBDA_CLASS . "lambdaMySQLi.class.php"); - - /* Create instance of MySQLi Class */ $mysqli = @new lambdaMySQLi(); --- 51,54 ---- |