|
From: Jon O. <jon...@us...> - 2008-07-15 22:07:17
|
Update of /cvsroot/mxbb/mx_pafiledb/pafiledb/modules In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26360/modules Modified Files: pa_post_comment.php pa_search.php Log Message: More... Index: pa_post_comment.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/modules/pa_post_comment.php,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** pa_post_comment.php 3 Jun 2008 20:17:10 -0000 1.27 --- pa_post_comment.php 15 Jul 2008 22:07:10 -0000 1.28 *************** *** 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) { ! $pafiledb_functions->generate_smilies( 'inline', PAGE_POSTING ); } } --- 179,183 ---- if ($smilies_on) { ! $mx_bbcode->generate_smilies( 'inline', PAGE_POSTING ); } } Index: pa_search.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/modules/pa_search.php,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** pa_search.php 10 Jul 2008 22:23:27 -0000 1.26 --- pa_search.php 15 Jul 2008 22:07:11 -0000 1.27 *************** *** 42,46 **** } ! mx_cache::load_file('functions_search', 'phpbb2'); if ( isset( $_REQUEST['search_keywords'] ) ) --- 42,49 ---- } ! if( !function_exists('add_search_words') ) ! { ! mx_cache::load_file('functions_search', 'phpbb2'); ! } if ( isset( $_REQUEST['search_keywords'] ) ) |