|
From: Jon O. <jon...@us...> - 2008-02-15 22:21:59
|
Update of /cvsroot/mxbb/mx_bugsbt/bugsbt/modules In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26175 Modified Files: bugsbt_post.php bugsbt_post_comment.php bugsbt_product.php bugsbt_update_tree.php bugsbt_view.php Log Message: bad globals Index: bugsbt_update_tree.php =================================================================== RCS file: /cvsroot/mxbb/mx_bugsbt/bugsbt/modules/bugsbt_update_tree.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** bugsbt_update_tree.php 9 Sep 2007 19:35:11 -0000 1.3 --- bugsbt_update_tree.php 15 Feb 2008 22:21:54 -0000 1.4 *************** *** 29,33 **** { global $template, $lang, $db, $phpEx, $bugsbt_config, $mx_request_vars, $userdata; ! global $mx_root_path, $module_root_path, $is_block, $phpEx; // --- 29,33 ---- { global $template, $lang, $db, $phpEx, $bugsbt_config, $mx_request_vars, $userdata; ! global $mx_root_path, $module_root_path, $is_block; // Index: bugsbt_product.php =================================================================== RCS file: /cvsroot/mxbb/mx_bugsbt/bugsbt/modules/bugsbt_product.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** bugsbt_product.php 9 Sep 2007 19:35:11 -0000 1.4 --- bugsbt_product.php 15 Feb 2008 22:21:54 -0000 1.5 *************** *** 29,33 **** { global $template, $lang, $db, $phpEx, $bugsbt_config, $mx_request_vars, $userdata; ! global $mx_root_path, $module_root_path, $is_block, $phpEx; // --- 29,33 ---- { global $template, $lang, $db, $phpEx, $bugsbt_config, $mx_request_vars, $userdata; ! global $mx_root_path, $module_root_path, $is_block; // Index: bugsbt_view.php =================================================================== RCS file: /cvsroot/mxbb/mx_bugsbt/bugsbt/modules/bugsbt_view.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** bugsbt_view.php 9 Sep 2007 19:35:11 -0000 1.5 --- bugsbt_view.php 15 Feb 2008 22:21:54 -0000 1.6 *************** *** 29,33 **** { global $template, $lang, $theme, $db, $phpEx, $bugsbt_config, $mx_request_vars, $userdata; ! global $phpbb_root_path, $mx_root_path, $module_root_path, $is_block, $phpEx, $images; global $mx_bugsbt_custom_field, $mx_bugsbt_functions, $print_version, $board_config, $mx_block; --- 29,33 ---- { global $template, $lang, $theme, $db, $phpEx, $bugsbt_config, $mx_request_vars, $userdata; ! global $phpbb_root_path, $mx_root_path, $module_root_path, $is_block, $images; global $mx_bugsbt_custom_field, $mx_bugsbt_functions, $print_version, $board_config, $mx_block; Index: bugsbt_post.php =================================================================== RCS file: /cvsroot/mxbb/mx_bugsbt/bugsbt/modules/bugsbt_post.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** bugsbt_post.php 9 Sep 2007 19:35:11 -0000 1.6 --- bugsbt_post.php 15 Feb 2008 22:21:54 -0000 1.7 *************** *** 29,35 **** { global $template, $mx_bugsbt_functions, $lang, $board_config, $phpEx, $bugsbt_config, $db, $images, $userdata; ! global $mx_root_path, $module_root_path, $phpbb_root_path, $is_block, $phpEx, $mx_request_vars, $theme; global $html_entities_match, $html_entities_replace, $unhtml_specialchars_match, $unhtml_specialchars_replace; - global $HTTP_SERVER_VARS; global $page_id, $block_id; --- 29,34 ---- { global $template, $mx_bugsbt_functions, $lang, $board_config, $phpEx, $bugsbt_config, $db, $images, $userdata; ! 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; *************** *** 190,194 **** $template->assign_block_vars( "tinyMCE", array( 'PATH' => $mx_root_path, ! 'LANG' => !empty($langcode) ? $langcode : $HTTP_SERVER_VARS['HTTP_ACCEPT_LANGUAGE'], 'TEMPLATE' => $phpbb_root_path . 'templates/'. $theme['template_name'] . '/' . $theme['head_stylesheet'] )); --- 189,193 ---- $template->assign_block_vars( "tinyMCE", array( 'PATH' => $mx_root_path, ! 'LANG' => !empty($langcode) ? $langcode : $_SERVER['HTTP_ACCEPT_LANGUAGE'], 'TEMPLATE' => $phpbb_root_path . 'templates/'. $theme['template_name'] . '/' . $theme['head_stylesheet'] )); Index: bugsbt_post_comment.php =================================================================== RCS file: /cvsroot/mxbb/mx_bugsbt/bugsbt/modules/bugsbt_post_comment.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** bugsbt_post_comment.php 28 Jan 2008 21:44:43 -0000 1.3 --- bugsbt_post_comment.php 15 Feb 2008 22:21:54 -0000 1.4 *************** *** 27,33 **** function main( $action ) { ! global $template, $mx_bugsbt_functions, $lang, $board_config, $phpEx, $bugsbt_config, $db, $images, $userdata, $_POST; 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, $phpEx, $mx_request_vars; global $page_id, $block_id; global $mx_block, $theme; --- 27,33 ---- function main( $action ) { ! global $template, $mx_bugsbt_functions, $lang, $board_config, $phpEx, $bugsbt_config, $db, $images, $userdata; 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 $page_id, $block_id; global $mx_block, $theme; |