|
From: Jon O. <jon...@us...> - 2008-02-15 22:43:46
|
Update of /cvsroot/mxbb/mx_kb/kb/modules In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3109/modules Modified Files: kb_post_comment.php Log Message: bad globals Index: kb_post_comment.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/kb/modules/kb_post_comment.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** kb_post_comment.php 15 Feb 2008 22:25:49 -0000 1.13 --- kb_post_comment.php 15 Feb 2008 22:43:41 -0000 1.14 *************** *** 145,149 **** $template->assign_block_vars( "tinyMCE_admin", array( 'PATH' => $mx_root_path, ! 'LANG' => !empty($langcode) ? $langcode : $HTTP_SERVER_VARS['HTTP_ACCEPT_LANGUAGE'], 'TEMPLATE' => $mx_root_path . 'templates/'. $theme['template_name'] . '/' . $theme['head_stylesheet'] )); --- 145,149 ---- $template->assign_block_vars( "tinyMCE_admin", array( 'PATH' => $mx_root_path, ! 'LANG' => !empty($langcode) ? $langcode : $_SERVER['HTTP_ACCEPT_LANGUAGE'], 'TEMPLATE' => $mx_root_path . 'templates/'. $theme['template_name'] . '/' . $theme['head_stylesheet'] )); *************** *** 153,157 **** $template->assign_block_vars( "tinyMCE", array( 'PATH' => $mx_root_path, ! 'LANG' => !empty($langcode) ? $langcode : $HTTP_SERVER_VARS['HTTP_ACCEPT_LANGUAGE'], 'TEMPLATE' => $mx_root_path . 'templates/'. $theme['template_name'] . '/' . $theme['head_stylesheet'] )); --- 153,157 ---- $template->assign_block_vars( "tinyMCE", array( 'PATH' => $mx_root_path, ! 'LANG' => !empty($langcode) ? $langcode : $_SERVER['HTTP_ACCEPT_LANGUAGE'], 'TEMPLATE' => $mx_root_path . 'templates/'. $theme['template_name'] . '/' . $theme['head_stylesheet'] )); |