Update of /cvsroot/openfirst/base/config
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9660
Modified Files:
first.php
Log Message:
Fix bug in mysql settings.
Index: first.php
===================================================================
RCS file: /cvsroot/openfirst/base/config/first.php,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** first.php 9 Apr 2004 17:25:50 -0000 1.32
--- first.php 9 Apr 2004 17:50:46 -0000 1.33
***************
*** 39,46 ****
if(isset($_POST["ostype"])) {
include_once("./dbase.php");
! $sqlserver = '" . $_POST["sqlserver"] . "';
! $sqluser = '" . $_POST["sqluser"] . "';
! $sqlpassword = '" . $_POST["sqlpassword"] . "';
! $sqldatabase = '" . $_POST["sqldatabase"] . "';
if(function_exists("ofirst_dbconnect") == false) {
die("Your version of PHP has not been compiled with MySQL support, therefore the openFIRST web portal system cannot run on this system. Please contact your system administrator to request MySQL support for your version of PHP.");
--- 39,46 ----
if(isset($_POST["ostype"])) {
include_once("./dbase.php");
! $sqlserver = $_POST["sqlserver"];
! $sqluser = $_POST["sqluser"];
! $sqlpassword = $_POST["sqlpassword"];
! $sqldatabase = $_POST["sqldatabase"];
if(function_exists("ofirst_dbconnect") == false) {
die("Your version of PHP has not been compiled with MySQL support, therefore the openFIRST web portal system cannot run on this system. Please contact your system administrator to request MySQL support for your version of PHP.");
|