|
From: Jon O. <jon...@us...> - 2005-12-11 16:13:47
|
Update of /cvsroot/mxbb/core/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17207/admin Modified Files: admin_mx_module_cp.php admin_mx_page_cp.php Log Message: Adding php5 support + minor fixes Index: admin_mx_module_cp.php =================================================================== RCS file: /cvsroot/mxbb/core/admin/admin_mx_module_cp.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** admin_mx_module_cp.php 22 Oct 2005 23:07:00 -0000 1.8 --- admin_mx_module_cp.php 11 Dec 2005 16:13:38 -0000 1.9 *************** *** 571,575 **** // Function loop // ! //$modulelist = get_list('module_id', MODULE_TABLE, 'module_id', 'module_name', $module_id, true); for( $function_count = 0; $function_count < $total_functions + 1; $function_count++ ) { --- 571,575 ---- // Function loop // ! //$modulelist = mx_get_list('module_id', MODULE_TABLE, 'module_id', 'module_name', $module_id, true); for( $function_count = 0; $function_count < $total_functions + 1; $function_count++ ) { Index: admin_mx_page_cp.php =================================================================== RCS file: /cvsroot/mxbb/core/admin/admin_mx_page_cp.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** admin_mx_page_cp.php 9 Dec 2005 23:22:03 -0000 1.9 --- admin_mx_page_cp.php 11 Dec 2005 16:13:38 -0000 1.10 *************** *** 695,699 **** // Page templates dropdown // ! $template_list = !$new_page ? '' : get_list('use_template', PAGE_TEMPLATES, 'page_template_id', 'template_name', 1, true); $l_choose_page_template = !$new_page ? '' : empty($lang['Choose_page_template']) ? "Choose page template" : $lang['Choose_page_template']; --- 695,699 ---- // Page templates dropdown // ! $template_list = !$new_page ? '' : mx_get_list('use_template', PAGE_TEMPLATES, 'page_template_id', 'template_name', 1, true); $l_choose_page_template = !$new_page ? '' : empty($lang['Choose_page_template']) ? "Choose page template" : $lang['Choose_page_template']; |