|
From: OryNider <ory...@us...> - 2008-01-14 13:04:47
|
Update of /cvsroot/mxbb/mx_online_adv In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv20626 Modified Files: Tag: core28x mx_online_adv.php Log Message: Index: mx_online_adv.php =================================================================== RCS file: /cvsroot/mxbb/mx_online_adv/mx_online_adv.php,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** mx_online_adv.php 2 Aug 2007 11:59:31 -0000 1.5 --- mx_online_adv.php 14 Jan 2008 13:04:37 -0000 1.5.2.1 *************** *** 15,27 **** } - // - // Start session management - // - //$mx_user->init($user_ip, PAGE_INDEX); - // - // End session management - // ! include_once($module_root_path . 'includes/online_common.'.$phpEx); --- 15,22 ---- } ! include($module_root_path . 'includes/online_common.'.$phpEx); ! ! include( $module_root_path . 'language/lang_english/lang_main.' . $phpEx ); *************** *** 179,188 **** } ! if ($parm2_put_today_bottom == 'TRUE') { $template->assign_block_vars('show_today_mode_bottom', array( - 'UOT_TITLE' => sprintf($lang['UOT_title'], $uot_count), - 'UOT_COUNT' => $uot_count, - 'UOT_LIST' => implode(", ",$users_online_today) ) ); --- 174,180 ---- } ! if ($parm2_put_today_bottom) { $template->assign_block_vars('show_today_mode_bottom', array( ) ); *************** *** 190,197 **** else { ! $template->assign_block_vars('show_today_mode_top', array( ! 'UOT_TITLE' => sprintf($lang['UOT_title'], $uot_count), ! 'UOT_COUNT' => $uot_count, ! 'UOT_LIST' => implode(", ",$users_online_today) ) ); --- 182,186 ---- else { ! $template->assign_block_vars('show_today_mode_top', array( ) ); *************** *** 495,498 **** --- 484,490 ---- 'NEWEST_USER' => sprintf($lang['Newest_user'], '<a href="' . append_sid(PHPBB_URL."profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$newest_uid") . '">', $newest_user, '</a>'), + 'UOT_TITLE' => sprintf($lang['UOT_title'], $uot_count), + 'UOT_COUNT' => $uot_count, + 'UOT_LIST' => implode(", ",$users_online_today) )); |