Update of /cvsroot/xoops/xoops-current/html
In directory usw-pr-cvs1:/tmp/cvs-serv16176
Modified Files:
install.php
Log Message:
no message
Index: install.php
===================================================================
RCS file: /cvsroot/xoops/xoops-current/html/install.php,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** install.php 18 Sep 2002 13:07:47 -0000 1.8
--- install.php 18 Sep 2002 13:58:25 -0000 1.9
***************
*** 228,256 ****
// "._INSTALL_L51."
// "._INSTALL_L66."
! \$xoopsConfig['database'] = \"".$myts->oopsHtmlSpecialChars($myts->oopsAddSlashes($database))."\";
// "._INSTALL_L30."
// "._INSTALL_L63."
! \$xoopsConfig['prefix'] = \"".$myts->oopsHtmlSpecialChars($myts->oopsAddSlashes($prefix))."\";
// "._INSTALL_L27."
// "._INSTALL_L67."
! \$xoopsConfig['dbhost'] = \"".$myts->oopsHtmlSpecialChars($myts->oopsAddSlashes($dbhost))."\";
// "._INSTALL_L28."
// "._INSTALL_L65."
! \$xoopsConfig['dbuname'] = \"".$myts->oopsHtmlSpecialChars($myts->oopsAddSlashes($dbuname))."\";
// "._INSTALL_L52."
// "._INSTALL_L68."
! \$xoopsConfig['dbpass'] = \"".$myts->oopsHtmlSpecialChars($myts->oopsAddSlashes($dbpass))."\";
// "._INSTALL_L29."
// "._INSTALL_L64."
! \$xoopsConfig['dbname'] = \"".$myts->oopsHtmlSpecialChars($myts->oopsAddSlashes($dbname))."\";
// "._INSTALL_L54." ("._INSTALL_L23."=1 "._INSTALL_L24."=0)
// "._INSTALL_L69."
! \$xoopsConfig['db_pconnect'] = ".intval($db_pconnect).";
include(XOOPS_ROOT_PATH.\"/include/common.php\");
--- 228,256 ----
// "._INSTALL_L51."
// "._INSTALL_L66."
! define(\"XOOPS_DB_TYPE\", \"".$myts->oopsHtmlSpecialChars($myts->oopsAddSlashes($database))."\");
// "._INSTALL_L30."
// "._INSTALL_L63."
! define(\"XOOPS_DB_PREFIX\", \"".$myts->oopsHtmlSpecialChars($myts->oopsAddSlashes($prefix))."\");
// "._INSTALL_L27."
// "._INSTALL_L67."
! define(\"XOOPS_DB_HOST\", \"".$myts->oopsHtmlSpecialChars($myts->oopsAddSlashes($dbhost))."\");
// "._INSTALL_L28."
// "._INSTALL_L65."
! define(\"XOOPS_DB_USER\", \"".$myts->oopsHtmlSpecialChars($myts->oopsAddSlashes($dbuname))."\");
// "._INSTALL_L52."
// "._INSTALL_L68."
! define(\"XOOPS_DB_PASS\", \"".$myts->oopsHtmlSpecialChars($myts->oopsAddSlashes($dbpass))."\");
// "._INSTALL_L29."
// "._INSTALL_L64."
! define(\"XOOPS_DB_NAME\", \"".$myts->oopsHtmlSpecialChars($myts->oopsAddSlashes($dbname))."\");
// "._INSTALL_L54." ("._INSTALL_L23."=1 "._INSTALL_L24."=0)
// "._INSTALL_L69."
! define(\"XOOPS_DB_PCONNECT\", \"".intval($db_pconnect)."\");
include(XOOPS_ROOT_PATH.\"/include/common.php\");
|