|
From: Markus P. <mar...@us...> - 2005-04-16 22:50:09
|
Update of /cvsroot/mxbb/core/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16244 Modified Files: mx_install.php Log Message: Fixed little bug loading template class during installation. Index: mx_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/mx_install.php,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** mx_install.php 16 Apr 2005 22:28:30 -0000 1.43 --- mx_install.php 16 Apr 2005 22:49:57 -0000 1.44 *************** *** 356,360 **** $s_hidden_fields = ''; ! include($mx_root_path . "includes/template.$phpEx"); $template = new Template($mx_root_path . 'install/templates'); page_header_install($lang['Welcome_install'], $lang['Choose_lang_explain']); --- 356,360 ---- $s_hidden_fields = ''; ! include($mx_root_path . "install/includes/template.$phpEx"); $template = new Template($mx_root_path . 'install/templates'); page_header_install($lang['Welcome_install'], $lang['Choose_lang_explain']); *************** *** 472,476 **** '<input type="hidden" name="config_data" value="' . htmlspecialchars($config_data) . '" />'; ! include($mx_root_path . "includes/template.$phpEx"); $template = new Template($mx_root_path . 'install/templates'); page_header_install($lang['Welcome_install'], $instruction_text); --- 472,476 ---- '<input type="hidden" name="config_data" value="' . htmlspecialchars($config_data) . '" />'; ! include($mx_root_path . "install/includes/template.$phpEx"); $template = new Template($mx_root_path . 'install/templates'); page_header_install($lang['Welcome_install'], $instruction_text); *************** *** 620,624 **** $message .= ' <br /> <br />' . $lang['Thanks_for_choosing'] . '<br /> <br />'; ! include($mx_root_path . "includes/template.$phpEx"); $template = new Template($mx_root_path . 'install/templates'); page_header_install($install_title, $message); --- 620,624 ---- $message .= ' <br /> <br />' . $lang['Thanks_for_choosing'] . '<br /> <br />'; ! include($mx_root_path . "install/includes/template.$phpEx"); $template = new Template($mx_root_path . 'install/templates'); page_header_install($install_title, $message); *************** *** 643,647 **** // Create the template for the first installation step. // ! include($mx_root_path . "includes/template.$phpEx"); $template = new Template($mx_root_path . 'install/templates'); --- 643,647 ---- // Create the template for the first installation step. // ! include($mx_root_path . "install/includes/template.$phpEx"); $template = new Template($mx_root_path . 'install/templates'); *************** *** 1038,1042 **** else { ! include($mx_root_path . "includes/template.$phpEx"); $template = new Template($mx_root_path . 'install/templates'); page_header_install($lang['Installation_error'], $message); --- 1038,1042 ---- else { ! include($mx_root_path . "install/includes/template.$phpEx"); $template = new Template($mx_root_path . 'install/templates'); page_header_install($lang['Installation_error'], $message); *************** *** 1415,1419 **** // Send the result to the browser. // ! include($mx_root_path . "includes/template.$phpEx"); $template = new Template($mx_root_path . 'install/templates'); page_header_install('phpInfo()'); --- 1415,1419 ---- // Send the result to the browser. // ! include($mx_root_path . "install/includes/template.$phpEx"); $template = new Template($mx_root_path . 'install/templates'); page_header_install('phpInfo()'); |