|
From: Jon O. <jon...@us...> - 2005-08-20 18:19:23
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21797 Modified Files: common.php index.php Log Message: Major commit Adding new adminCP, blockCP and many new oo components Finally finalizing latest months hard work :-) Index: common.php =================================================================== RCS file: /cvsroot/mxbb/core/common.php,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** common.php 1 May 2005 16:13:59 -0000 1.34 --- common.php 20 Aug 2005 18:19:11 -0000 1.35 *************** *** 218,223 **** include_once($mx_root_path . 'includes/mx_functions.' . $phpEx); include_once($mx_root_path . 'includes/mx_functions_phpbb.' . $phpEx); ! include_once($mx_root_path . 'includes/mx_auth.' . $phpEx); ! include_once($mx_root_path . 'includes/mx_cache.' . $phpEx); --- 218,223 ---- include_once($mx_root_path . 'includes/mx_functions.' . $phpEx); include_once($mx_root_path . 'includes/mx_functions_phpbb.' . $phpEx); ! include_once($mx_root_path . 'includes/mx_functions_auth.' . $phpEx); ! include_once($mx_root_path . 'includes/mx_functions_core.' . $phpEx); *************** *** 320,323 **** mx_message_die(GENERAL_MESSAGE, 'Board_disable', 'Information'); } - ?> \ No newline at end of file --- 320,322 ---- Index: index.php =================================================================== RCS file: /cvsroot/mxbb/core/index.php,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** index.php 1 May 2005 16:14:00 -0000 1.37 --- index.php 20 Aug 2005 18:19:11 -0000 1.38 *************** *** 265,272 **** if ( $mx_dynamic_block->dynamic_block_id > 0 ) { ! $mx_dynamic_block->output_cp( $edit_on ); } ! $mx_block->output_cp( $edit_on ); // --- 265,272 ---- if ( $mx_dynamic_block->dynamic_block_id > 0 ) { ! $mx_dynamic_block->output_cp_button( $edit_on ); } ! $mx_block->output_cp_button( $edit_on ); // *************** *** 342,346 **** if ( $mx_parent_block->is_sub ) { ! $mx_parent_block->erase(); } } --- 342,346 ---- if ( $mx_parent_block->is_sub ) { ! $mx_parent_block->kill_me(); } } |