|
From: FlorinCB <ory...@us...> - 2008-09-12 06:27:41
|
Update of /cvsroot/mxbb/core/install/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv12625/includes Modified Files: functions_install.php Log Message: fix Index: functions_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/includes/functions_install.php,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** functions_install.php 8 Sep 2008 00:54:05 -0000 1.16 --- functions_install.php 12 Sep 2008 06:27:34 -0000 1.17 *************** *** 854,859 **** 'dbuser' => $dbuser, 'dbpasswd' => $dbpasswd, ! 'table_prefix' => $table_prefix, ! 'acm_type' => ( !empty($acm_type) ? $acm_type : '' ), ); } --- 854,860 ---- 'dbuser' => $dbuser, 'dbpasswd' => $dbpasswd, ! 'table_prefix' => $table_prefix, ! 'acm_type' => $acm_type ? $acm_type : '', ! 'status' => defined('PHPBB_INSTALLED') ? true : false, ); } *************** *** 874,877 **** --- 875,879 ---- 'dbpasswd' => $dbpasswd, 'mx_table_prefix' => $mx_table_prefix, + 'status' => (defined('MX_INSTALLED') && (MX_INSTALLED === true)) ? true : false, ); } |