|
From: FlorinCB <ory...@us...> - 2008-11-06 00:52:12
|
Update of /cvsroot/mxbb/core/modules/mx_coreblocks In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv2700 Modified Files: mx_online.php Log Message: Index: mx_online.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_coreblocks/mx_online.php,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** mx_online.php 1 Nov 2008 15:11:48 -0000 1.36 --- mx_online.php 6 Nov 2008 00:52:07 -0000 1.37 *************** *** 75,79 **** { // User is logged in and therefor not a guest ! if ( ($row['session_logged_in'] && PORTAL_BACKEND != 'phpbb3' || ( $row['user_id'] != 1 && PORTAL_BACKEND == 'phpbb3' ) ) ) { // Skip multiple sessions for one user --- 75,79 ---- { // User is logged in and therefor not a guest ! if ($userdata['user_id'] != ANONYMOUS) { // Skip multiple sessions for one user *************** *** 462,467 **** //For comp. with phpBB2 backend ! 'L_WHOSONLINE_ADMIN' => sprintf($lang['Admin_online_color'], '<span style="color:#' . $theme['fontcolor3'] . '">', '</span>'), ! 'L_WHOSONLINE_MOD' => sprintf($lang['Mod_online_color'], '<span style="color:#' . $theme['fontcolor2'] . '">', '</span>'), 'L_ONLINE_EXPLAIN' => $lang['Online_explain'], --- 462,467 ---- //For comp. with phpBB2 backend ! 'L_WHOSONLINE_ADMIN' => isset($theme['fontcolor3']) ? sprintf($lang['Admin_online_color'], '<span style="color:#' . $theme['fontcolor3'] . '">', '</span>') : '', ! 'L_WHOSONLINE_MOD' => isset($theme['fontcolor2']) ? sprintf($lang['Mod_online_color'], '<span style="color:#' . $theme['fontcolor2'] . '">', '</span>') : '', 'L_ONLINE_EXPLAIN' => $lang['Online_explain'], |