Update of /cvsroot/openfirst/base/config
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4876/config
Modified Files:
first.php
Log Message:
Fixed an error in the include_path appending (in the generated globals.php)
Index: first.php
===================================================================
RCS file: /cvsroot/openfirst/base/config/first.php,v
retrieving revision 1.41
retrieving revision 1.42
diff -C2 -d -r1.41 -r1.42
*** first.php 2 Aug 2004 02:28:09 -0000 1.41
--- first.php 28 Dec 2004 18:15:42 -0000 1.42
***************
*** 83,90 ****
\$ostype = '" . $_POST["ostype"] . "';
if (\$ostype == \"windows\") {
! ini_set(\"include_path\", ini_get(\"include_path\") . \"../config/;.\");
include_once('dbase.php');
} else {
! ini_set(\"include_path\", ini_get(\"include_path\") . \"../config/:.\");
include_once('dbase.php');
}
--- 83,90 ----
\$ostype = '" . $_POST["ostype"] . "';
if (\$ostype == \"windows\") {
! ini_set(\"include_path\", ini_get(\"include_path\") . \";../config/;.\");
include_once('dbase.php');
} else {
! ini_set(\"include_path\", ini_get(\"include_path\") . \":../config/:.\");
include_once('dbase.php');
}
|