Update of /cvsroot/openfirst/base/config
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16138/config
Modified Files:
first.php
Log Message:
wrong path in DBMS glob()
Index: first.php
===================================================================
RCS file: /cvsroot/openfirst/base/config/first.php,v
retrieving revision 1.67
retrieving revision 1.68
diff -C2 -d -r1.67 -r1.68
*** first.php 23 Nov 2005 18:21:33 -0000 1.67
--- first.php 23 Nov 2005 18:29:54 -0000 1.68
***************
*** 177,181 ****
// DB types
$dbms = array();
! foreach(glob('../*DataBase.php') as $file) {
$matches = array();
$n = preg_match('#^.*/(.*)DataBase.php$#', $file, $matches);
--- 177,181 ----
// DB types
$dbms = array();
! foreach(glob("$fbasepath/includes/*DataBase.php") as $file) {
$matches = array();
$n = preg_match('#^.*/(.*)DataBase.php$#', $file, $matches);
|