|
From: Jon O. <jon...@us...> - 2008-07-15 22:05:50
|
Update of /cvsroot/mxbb/mx_kb/kb/modules In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv25122/kb/modules Modified Files: kb_post.php kb_post_comment.php kb_search.php Log Message: More... Index: kb_search.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/kb/modules/kb_search.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** kb_search.php 10 Jul 2008 22:22:19 -0000 1.14 --- kb_search.php 15 Jul 2008 22:05:43 -0000 1.15 *************** *** 30,35 **** global $phpbb_root_path, $userdata, $mx_root_path, $module_root_path, $is_block; - mx_cache::load_file('functions_search', 'phpbb2'); - if ( isset( $_REQUEST['search_keywords'] ) ) { --- 30,33 ---- Index: kb_post.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/kb/modules/kb_post.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** kb_post.php 6 Jul 2008 22:12:24 -0000 1.19 --- kb_post.php 15 Jul 2008 22:05:43 -0000 1.20 *************** *** 30,34 **** global $mx_root_path, $module_root_path, $phpbb_root_path, $is_block, $mx_request_vars, $theme; global $html_entities_match, $html_entities_replace, $unhtml_specialchars_match, $unhtml_specialchars_replace; ! global $mx_block; // --- 30,34 ---- global $mx_root_path, $module_root_path, $phpbb_root_path, $is_block, $mx_request_vars, $theme; global $html_entities_match, $html_entities_replace, $unhtml_specialchars_match, $unhtml_specialchars_replace; ! global $mx_block, $mx_bbcode; // *************** *** 218,222 **** if ($smilies_on) { ! $mx_kb_functions->generate_smilies( 'inline', PAGE_POSTING ); } } --- 218,222 ---- if ($smilies_on) { ! $mx_bbcode->generate_smilies( 'inline', PAGE_POSTING ); } } Index: kb_post_comment.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/kb/modules/kb_post_comment.php,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** kb_post_comment.php 3 Jun 2008 20:10:35 -0000 1.16 --- kb_post_comment.php 15 Jul 2008 22:05:43 -0000 1.17 *************** *** 30,34 **** global $html_entities_match, $html_entities_replace, $unhtml_specialchars_match, $unhtml_specialchars_replace; global $mx_root_path, $module_root_path, $phpbb_root_path, $is_block, $mx_request_vars; ! global $mx_block, $theme; // --- 30,34 ---- global $html_entities_match, $html_entities_replace, $unhtml_specialchars_match, $unhtml_specialchars_replace; global $mx_root_path, $module_root_path, $phpbb_root_path, $is_block, $mx_request_vars; ! global $mx_block, $theme, $mx_bbcode; // *************** *** 179,183 **** if ($smilies_on) { ! $mx_kb_functions->generate_smilies( 'inline', PAGE_POSTING ); } } --- 179,183 ---- if ($smilies_on) { ! $mx_bbcode->generate_smilies( 'inline', PAGE_POSTING ); } } |