|
From: Jon O. <jon...@us...> - 2007-05-31 21:10:57
|
Update of /cvsroot/mxbb/mx_kb/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv23818/admin Modified Files: mx_module_defs.php Log Message: minor fixes Index: mx_module_defs.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/admin/mx_module_defs.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** mx_module_defs.php 30 Aug 2006 19:20:35 -0000 1.14 --- mx_module_defs.php 31 May 2007 21:10:54 -0000 1.15 *************** *** 59,62 **** --- 59,66 ---- $parameter_value = addslashes( serialize( $parameter_value ) ); break; + + case 'kb_quick_cat': + $parameter_value = $HTTP_POST_VARS[$parameter_data['parameter_id']]; + break; } *************** *** 125,130 **** global $template, $board_config, $db, $theme, $lang, $images, $mx_blockcp, $mx_root_path, $phpEx, $mx_table_prefix, $table_prefix; $module_root_path = $mx_root_path . $mx_blockcp->module_root_path; - //include_once( $module_root_path . "kb/includes/functions_kb.$phpEx" ); include_once( $module_root_path . "kb/includes/kb_constants.$phpEx" ); include_once( $module_root_path . "kb/includes/kb_defs.$phpEx" ); --- 129,136 ---- global $template, $board_config, $db, $theme, $lang, $images, $mx_blockcp, $mx_root_path, $phpEx, $mx_table_prefix, $table_prefix; + // + // Includes + // $module_root_path = $mx_root_path . $mx_blockcp->module_root_path; include_once( $module_root_path . "kb/includes/kb_constants.$phpEx" ); include_once( $module_root_path . "kb/includes/kb_defs.$phpEx" ); |