|
From: OryNider <ory...@us...> - 2008-01-12 10:43:51
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv22295 Modified Files: mx_functions.php mx_functions_style.php page_tail.php Log Message: SiteName Index: mx_functions_style.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_style.php,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** mx_functions_style.php 27 Dec 2007 02:20:20 -0000 1.29 --- mx_functions_style.php 12 Jan 2008 10:43:45 -0000 1.30 *************** *** 651,655 **** if ( defined('IN_ADMIN') ) { ! if( !file_exists(@phpBB2::phpbb_realpath($mx_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_admin.'.$phpEx)) ) { $board_config['default_lang'] = 'english'; --- 651,655 ---- if ( defined('IN_ADMIN') ) { ! if( !file_exists($mx_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_admin.'.$phpEx)) { $board_config['default_lang'] = 'english'; Index: page_tail.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/page_tail.php,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** page_tail.php 20 Dec 2007 13:10:12 -0000 1.34 --- page_tail.php 12 Jan 2008 10:43:45 -0000 1.35 *************** *** 112,115 **** --- 112,116 ---- 'MXBB_EXTRA' => $mxbb_footer_text, 'MXBB_EXTRA_URL' => $mxbb_footer_text_url, + 'SITENAME' => $board_config['sitename'], 'POWERED_BY' => $lang['Powered_by'], 'MX_VERSION' => ($userdata['user_level'] == ADMIN && $userdata['user_id'] != ANONYMOUS) ? PORTAL_VERSION : '', Index: mx_functions.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions.php,v retrieving revision 1.72 retrieving revision 1.73 diff -C2 -d -r1.72 -r1.73 *** mx_functions.php 23 Jul 2007 22:52:43 -0000 1.72 --- mx_functions.php 12 Jan 2008 10:43:45 -0000 1.73 *************** *** 608,612 **** // Initialize PHP session // ! session_start(); } --- 608,612 ---- // Initialize PHP session // ! @session_start(); } |