|
From: Jon O. <jon...@us...> - 2005-08-20 18:48:57
|
Update of /cvsroot/mxbb/core/modules/mx_textblocks/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27477/modules/mx_textblocks/admin Modified Files: mx_module_defs.php Log Message: minor fixes Index: mx_module_defs.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_textblocks/admin/mx_module_defs.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** mx_module_defs.php 20 Aug 2005 18:19:13 -0000 1.1 --- mx_module_defs.php 20 Aug 2005 18:48:50 -0000 1.2 *************** *** 34,38 **** //define('MX_ALL_DATA' , -1); // Flag - write all data ! class mx_blockcp_parameter { // ------------------------------ --- 34,38 ---- //define('MX_ALL_DATA' , -1); // Flag - write all data ! class mx_module_defs { // ------------------------------ *************** *** 63,67 **** // Submit custom parameter field and data // =================================================== ! function submit_custom_pars( $parameter_data, $block_id ) { global $HTTP_POST_VARS, $db, $board_config, $html_entities_match, $html_entities_replace; --- 63,67 ---- // Submit custom parameter field and data // =================================================== ! function submit_module_parameters( $parameter_data, $block_id ) { global $HTTP_POST_VARS, $db, $board_config, $html_entities_match, $html_entities_replace; *************** *** 115,119 **** // Display cuztom parameter field and data in the Block Control Panel // =================================================== ! function display_custom_edit( $parameter_data, $block_id ) { global $template, $mx_blockcp, $mx_root_path, $theme, $lang; --- 115,119 ---- // Display cuztom parameter field and data in the Block Control Panel // =================================================== ! function display_module_parameters( $parameter_data, $block_id ) { global $template, $mx_blockcp, $mx_root_path, $theme, $lang; *************** *** 162,166 **** $template->set_filenames(array( ! 'parameter' => $mx_root_path . $mx_blockcp->module_root_path . 'templates/'. $theme['template_name'] . '/admin/mx_blockcp_parameter.tpl') ); --- 162,166 ---- $template->set_filenames(array( ! 'parameter' => $mx_root_path . $mx_blockcp->module_root_path . 'templates/'. $theme['template_name'] . '/admin/mx_module_parameters.tpl') ); *************** *** 270,274 **** $template->set_filenames(array( ! 'parameter' => $mx_root_path . $mx_blockcp->module_root_path . 'templates/'. $theme['template_name'] . '/admin/mx_blockcp_parameter.tpl') ); --- 270,274 ---- $template->set_filenames(array( ! 'parameter' => $mx_root_path . $mx_blockcp->module_root_path . 'templates/'. $theme['template_name'] . '/admin/mx_module_parameters.tpl') ); *************** *** 360,364 **** $template->set_filenames(array( ! 'parameter' => $mx_root_path . $mx_blockcp->module_root_path . 'templates/'. $theme['template_name'] . '/admin/mx_blockcp_parameter.tpl') ); --- 360,364 ---- $template->set_filenames(array( ! 'parameter' => $mx_root_path . $mx_blockcp->module_root_path . 'templates/'. $theme['template_name'] . '/admin/mx_module_parameters.tpl') ); |