Update of /cvsroot/openfirst/config
In directory sc8-pr-cvs1:/tmp/cvs-serv23479
Modified Files:
globals.php
Log Message:
Changed includes for the messenger module.
Index: globals.php
===================================================================
RCS file: /cvsroot/openfirst/config/globals.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** globals.php 4 Jun 2003 18:48:16 -0000 1.9
--- globals.php 6 Jun 2003 21:34:27 -0000 1.10
***************
*** 70,77 ****
// scripts will refer people to.
! $sqlconnection = mysql_connect("$sqlserver","$sqluser","$sqlpassword"); // Connect to the
// SQL database
! session_start();
//MODULE ACTIVATION - To activate any
--- 70,77 ----
// scripts will refer people to.
! $sqlconnection = mysql_connect("$sqlserver","$sqluser","$sqlpassword"); // Connect to the
// SQL database
! session_start();
//MODULE ACTIVATION - To activate any
***************
*** 84,102 ****
if(file_exists("../logger/logger.php") == true) {
! include("../logger/logger.php");
}
! if(file_exists("../messanger/messanger.php") == true) {
! include("../messanger/messanger.php");
}
if(file_exists("../emoticon/emoticonf.php") == true) {
! include("../emoticon/emoticonf.php");
}
if(file_exists("../members/auth.php") == true) {
! // Set the type of encryption to use for members passwords.
! $encryption = "crypt"; // You should probably leave this
// available values are:
// md5, sha1, crypt, crc32
! include("../members/auth.php");
}
--- 84,105 ----
if(file_exists("../logger/logger.php") == true) {
! include("../logger/logger.php");
}
!
! if(file_exists("../messenger/messenger.php") == true) {
! include("../messenger/messenger.php");
}
+
if(file_exists("../emoticon/emoticonf.php") == true) {
! include("../emoticon/emoticonf.php");
}
+
if(file_exists("../members/auth.php") == true) {
! // Set the type of encryption to use for members passwords.
! $encryption = "crypt"; // You should probably leave this
// available values are:
// md5, sha1, crypt, crc32
! include("../members/auth.php");
}
|