|
From: FlorinCB <ory...@us...> - 2008-10-27 04:50:45
|
Update of /cvsroot/mxbb/core/modules/mx_coreblocks In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv331 Modified Files: mx_online.php Log Message: fix Index: mx_online.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_coreblocks/mx_online.php,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** mx_online.php 4 Oct 2008 07:04:38 -0000 1.29 --- mx_online.php 27 Oct 2008 04:50:35 -0000 1.30 *************** *** 117,121 **** if ($row['user_allow_viewonline']) { ! $user_online_link = mx_get_username_string('full', $row['user_id'], $row['username'], $row['user_colour']); $logged_visible_online++; } --- 117,121 ---- if ($row['user_allow_viewonline']) { ! $user_online_link = $mx_backend->get_username_string('full', $row['user_id'], $row['username'], $row['user_colour']); $logged_visible_online++; } *************** *** 291,295 **** } $newest_style_color = 'style="color:#' . $newest_color . '"'; ! $newest_user = sprintf($lang['Newest_user'], '<a href="' . mx_append_sid(PHPBB_URL."profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$newest_uid") . '"' . $style_color .'>', $newest_username, '</a>'); break; --- 291,295 ---- } $newest_style_color = 'style="color:#' . $newest_color . '"'; ! $newest_user = sprintf($lang['Newest_user'], $mx_backend->get_username_string('full', $newest_uid, $newest_username, $newest_color)); break; *************** *** 297,301 **** $newest_color = $board_config['newest_user_colour']; $newest_style_color = ($newest_color) ? ' style="color:#' . $newest_color . '" class="username-coloured"' : ''; ! $newest_user = sprintf($mx_user->lang['NEWEST_USER'], mx_get_username_string('full', $newest_uid, $newest_username, $newest_color)); break; } --- 297,301 ---- $newest_color = $board_config['newest_user_colour']; $newest_style_color = ($newest_color) ? ' style="color:#' . $newest_color . '" class="username-coloured"' : ''; ! $newest_user = sprintf($mx_user->lang['NEWEST_USER'], $mx_backend->get_username_string('full', $newest_uid, $newest_username, $newest_color)); break; } *************** *** 409,413 **** while ($row = $db->sql_fetchrow($result)) { ! $birthday_list .= (($birthday_list != '') ? ', ' : '') . mx_get_username_string('full', $row['user_id'], $row['username'], $row['user_colour']); if ($age = (int) substr($row['user_birthday'], -4)) --- 409,413 ---- while ($row = $db->sql_fetchrow($result)) { ! $birthday_list .= (($birthday_list != '') ? ', ' : '') . $mx_backend->get_username_string('full', $row['user_id'], $row['username'], $row['user_colour']); if ($age = (int) substr($row['user_birthday'], -4)) |