|
From: Jon O. <jon...@us...> - 2008-06-16 14:42:37
|
Update of /cvsroot/mxbb/core/install/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3902 Modified Files: functions_install.php Log Message: upgrade fix Index: functions_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/includes/functions_install.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** functions_install.php 16 Jun 2008 10:47:24 -0000 1.8 --- functions_install.php 16 Jun 2008 14:42:29 -0000 1.9 *************** *** 1301,1305 **** parse_cmd_sql($sql); ! if (!$_POST['mxbb'] && $portal_backend = 'phpbb2') // phpBB2 install { $sql_phpbb = "SELECT * FROM ".$table_prefix."users WHERE user_level = 1"; --- 1301,1305 ---- parse_cmd_sql($sql); ! if (!$_POST['mxbb'] && $portal_backend == 'phpbb2') // phpBB2 install { $sql_phpbb = "SELECT * FROM ".$table_prefix."users WHERE user_level = 1"; *************** *** 1327,1331 **** portal_version='$mx_portal_version'"; ! if ($upgrade_mode = 'from28x') { // --- 1327,1331 ---- portal_version='$mx_portal_version'"; ! if ($upgrade_mode == 'from28x') { // *************** *** 1382,1386 **** parse_cmd_sql($sql); ! if ($upgrade_mode = 'from28x') { // --- 1382,1386 ---- parse_cmd_sql($sql); ! if ($upgrade_mode == 'from28x') { // |