|
From: Jon O. <jon...@us...> - 2008-02-03 21:06:57
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv32452 Modified Files: mx_functions_admincp.php Log Message: - BUG: mx_page::load is used in the blockCP where the page class is not loaded :( i have returned old include statement. - minor fix for tinymce Index: mx_functions_admincp.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_admincp.php,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** mx_functions_admincp.php 18 Jan 2008 14:37:28 -0000 1.42 --- mx_functions_admincp.php 3 Feb 2008 21:06:52 -0000 1.43 *************** *** 3031,3035 **** global $db, $phpbb_root_path, $board_config, $lang, $phpEx; ! mx_page::load('functions_seach', 'phpbb2'); $search_match_table = MX_MATCH_TABLE; --- 3031,3035 ---- global $db, $phpbb_root_path, $board_config, $lang, $phpEx; ! include_once($phpbb_root_path . 'includes/functions_search.' . $phpEx); $search_match_table = MX_MATCH_TABLE; *************** *** 3839,3843 **** @fputs($fsock, "HOST: $host\r\n"); @fputs($fsock, "Connection: close\r\n\r\n"); ! $file_info = ''; $get_info = false; --- 3839,3843 ---- @fputs($fsock, "HOST: $host\r\n"); @fputs($fsock, "Connection: close\r\n\r\n"); ! $file_info = ''; $get_info = false; *************** *** 3878,3882 **** } } ! return $file_info; } --- 3878,3882 ---- } } ! return $file_info; } |