|
From: Jon O. <jon...@us...> - 2008-07-15 22:03:17
|
Update of /cvsroot/mxbb/core/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21915/admin Modified Files: admin_mx_block_cp.php pagestart.php Log Message: More...of the same Index: pagestart.php =================================================================== RCS file: /cvsroot/mxbb/core/admin/pagestart.php,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** pagestart.php 13 Jul 2008 21:28:11 -0000 1.38 --- pagestart.php 15 Jul 2008 22:02:43 -0000 1.39 *************** *** 23,31 **** include_once($mx_root_path . 'includes/mx_functions_blockcp.' . $phpEx); ! if( !function_exists('generate_smilies') ) { mx_cache::load_file('functions_post', 'phpbb2'); } // // Start session, user and style (template + theme) management --- 23,36 ---- include_once($mx_root_path . 'includes/mx_functions_blockcp.' . $phpEx); ! if( !function_exists('prepare_message') ) { mx_cache::load_file('functions_post', 'phpbb2'); } + if( !function_exists('add_search_words') ) + { + mx_cache::load_file('functions_search', 'phpbb2'); + } + // // Start session, user and style (template + theme) management Index: admin_mx_block_cp.php =================================================================== RCS file: /cvsroot/mxbb/core/admin/admin_mx_block_cp.php,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** admin_mx_block_cp.php 13 Jul 2008 21:28:10 -0000 1.24 --- admin_mx_block_cp.php 15 Jul 2008 22:02:42 -0000 1.25 *************** *** 26,36 **** require('./pagestart.' . $phpEx); - if( !function_exists('generate_smilies') ) - { - mx_cache::load_file('functions_post', 'phpbb2'); - } - - mx_cache::load_file('functions_search', 'phpbb2'); - // // Instatiate the mx_admin class --- 26,29 ---- |