Update of /cvsroot/openfirst/base/includes
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13067/includes
Modified Files:
sitesettings.tpl
Log Message:
Removed DB initialization
Index: sitesettings.tpl
===================================================================
RCS file: /cvsroot/openfirst/base/includes/sitesettings.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** sitesettings.tpl 26 May 2005 21:00:03 -0000 1.2
--- sitesettings.tpl 30 Jun 2005 02:31:24 -0000 1.3
***************
*** 1,36 ****
! <?php
! /*
! * openFIRST base configuration file
! * This file has been automatically generated by first.php.
! * it contains the basic configuration options required to
! * operate the OpenFIRST web portal software. Note, that
! * most configuration options are now stored in the MySQL
! * database, in the ofirst_config table.
! */
! $DBaseType = %DBTYPE%;
!
! $Encryption = %ENCRYPT%;
!
! $Title = %TITLE%;
! $Version = %VER%;
! $sqlServer = %DBSERVER%;
! $sqlUser = %DBUSER%;
! $sqlPassword = %DBPASS%;
! $sqlDatabase = %DBNAME%;
!
! $sqlConnection = ofirst_dbconnect($sqlServer, $sqlUser, $sqlPassword);
! ofirst_select_db($sqlDatabase);
!
! $PassSaveDisabled = %COOKIE%;
! $regEnabled = %REG%;
! $Server = %SERVER%;
! $BasePath = %BASEPATH%;
! $fBasePath = %FBASEPATH%;
! $Home = %HOME%;
! $StylePath = "$BasePath/style";
! $fStylePath = "$fBasePath/style";
! $Header = %HEADER%;
! $Footer = %FOOTER%;
! $MailNotify = %MASTERMAIL%;
! $MailFrom = %BOTMAIL%;
! ?>
--- 1,33 ----
! <?php
! /*
! * openFIRST base configuration file
! * This file has been automatically generated by first.php.
! * it contains the basic configuration options required to
! * operate the OpenFIRST web portal software. Note, that
! * most configuration options are now stored in the MySQL
! * database, in the ofirst_config table.
! */
! $DBaseType = %DBTYPE%;
!
! $Encryption = %ENCRYPT%;
!
! $Title = %TITLE%;
! $Version = %VER%;
! $sqlServer = %DBSERVER%;
! $sqlUser = %DBUSER%;
! $sqlPassword = %DBPASS%;
! $sqlDatabase = %DBNAME%;
!
! $PassSaveDisabled = %COOKIE%;
! $regEnabled = %REG%;
! $Server = %SERVER%;
! $BasePath = %BASEPATH%;
! $fBasePath = %FBASEPATH%;
! $Home = %HOME%;
! $StylePath = "$BasePath/style";
! $fStylePath = "$fBasePath/style";
! $Header = %HEADER%;
! $Footer = %FOOTER%;
! $MailNotify = %MASTERMAIL%;
! $MailFrom = %BOTMAIL%;
! ?>
|