|
From: Jon O. <jon...@us...> - 2008-07-15 22:03:57
|
Update of /cvsroot/mxbb/mx_bugsbt/bugsbt/modules In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv23256/modules Modified Files: bugsbt_post.php bugsbt_post_comment.php Log Message: More... Index: bugsbt_post.php =================================================================== RCS file: /cvsroot/mxbb/mx_bugsbt/bugsbt/modules/bugsbt_post.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** bugsbt_post.php 6 Jul 2008 22:11:31 -0000 1.10 --- bugsbt_post.php 15 Jul 2008 22:03:50 -0000 1.11 *************** *** 31,35 **** 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 $page_id, $block_id; // --- 31,35 ---- 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 $page_id, $block_id, $mx_bbcode; // *************** *** 208,212 **** if ($smilies_on) { ! $mx_bugsbt_functions->generate_smilies( 'inline', PAGE_POSTING ); } } --- 208,212 ---- if ($smilies_on) { ! $mx_bbcode->generate_smilies( 'inline', PAGE_POSTING ); } } Index: bugsbt_post_comment.php =================================================================== RCS file: /cvsroot/mxbb/mx_bugsbt/bugsbt/modules/bugsbt_post_comment.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** bugsbt_post_comment.php 3 Jun 2008 20:07:48 -0000 1.6 --- bugsbt_post_comment.php 15 Jul 2008 22:03:50 -0000 1.7 *************** *** 31,35 **** global $mx_root_path, $module_root_path, $phpbb_root_path, $is_block, $mx_request_vars; global $page_id, $block_id; ! global $mx_block, $theme; // --- 31,35 ---- global $mx_root_path, $module_root_path, $phpbb_root_path, $is_block, $mx_request_vars; global $page_id, $block_id; ! global $mx_block, $theme, $mx_bbcode; // *************** *** 175,179 **** if ($smilies_on) { ! $mx_bugsbt_functions->generate_smilies( 'inline', PAGE_POSTING ); } } --- 175,179 ---- if ($smilies_on) { ! $mx_bbcode->generate_smilies( 'inline', PAGE_POSTING ); } } |