Update of /cvsroot/openfirst/base/config
In directory sc8-pr-cvs1:/tmp/cvs-serv4991
Modified Files:
install.php
Log Message:
Hide database types which are not currently offered from module installer
Index: install.php
===================================================================
RCS file: /cvsroot/openfirst/base/config/install.php,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** install.php 13 Sep 2003 15:38:26 -0000 1.15
--- install.php 16 Sep 2003 11:55:57 -0000 1.16
***************
*** 78,82 ****
$handl=@opendir(getcwd() . "/$file/setup/");
while ($fil = @readdir($handl)){
! if($fil != ".." && $fil != "." && $fil != "") {
$filename = "../$file/setup/$fil";
$sqlf = str_replace(".", "-", str_replace(".$dbasetype", "",substr(strrchr($filename, "/"), 1)));
--- 78,82 ----
$handl=@opendir(getcwd() . "/$file/setup/");
while ($fil = @readdir($handl)){
! if($fil != ".." && $fil != "." && $fil != "" && str_pos($fil, $dbasetype) > 0) {
$filename = "../$file/setup/$fil";
$sqlf = str_replace(".", "-", str_replace(".$dbasetype", "",substr(strrchr($filename, "/"), 1)));
|