|
From: Jon O. <jon...@us...> - 2008-06-16 20:59:01
|
Update of /cvsroot/mxbb/core/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv9771 Modified Files: index.php Log Message: Oops, updated admin index fix Index: index.php =================================================================== RCS file: /cvsroot/mxbb/core/admin/index.php,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -d -r1.50 -r1.51 *** index.php 16 Jun 2008 20:41:22 -0000 1.50 --- index.php 16 Jun 2008 20:58:57 -0000 1.51 *************** *** 601,605 **** break; case 'phpbb3': ! $sql = "SELECT u.*, s.* FROM " . USERS_TABLE . " u, " . SESSIONS_TABLE . " s WHERE u.user_id <> " . ANONYMOUS . " --- 601,605 ---- break; case 'phpbb3': ! $sql = "SELECT u.*, s.*, s.session_time AS user_session_time FROM " . USERS_TABLE . " u, " . SESSIONS_TABLE . " s WHERE u.user_id <> " . ANONYMOUS . " *************** *** 617,626 **** $db->sql_freeresult($result); - switch (PORTAL_BACKEND) { case 'internal': case 'phpbb2': ! $sql = "SELECT session_page, session_logged_in, session_time, session_ip, session_start FROM " . SESSIONS_TABLE . " WHERE session_logged_in = 0 --- 617,625 ---- $db->sql_freeresult($result); switch (PORTAL_BACKEND) { case 'internal': case 'phpbb2': ! $sql = "SELECT u.*, s.* FROM " . SESSIONS_TABLE . " WHERE session_logged_in = 0 *************** *** 778,782 **** "USERNAME" => $username, "STARTED" => phpBB2::create_date($board_config['default_dateformat'], $onlinerow_reg[$i]['session_start'], $board_config['board_timezone']), ! "LASTUPDATE" => phpBB2::create_date($board_config['default_dateformat'], $onlinerow_reg[$i]['session_time'], $board_config['board_timezone']), "FORUM_LOCATION" => $location, "IP_ADDRESS" => $reg_ip, --- 777,781 ---- "USERNAME" => $username, "STARTED" => phpBB2::create_date($board_config['default_dateformat'], $onlinerow_reg[$i]['session_start'], $board_config['board_timezone']), ! "LASTUPDATE" => phpBB2::create_date($board_config['default_dateformat'], $onlinerow_reg[$i]['user_session_time'], $board_config['board_timezone']), "FORUM_LOCATION" => $location, "IP_ADDRESS" => $reg_ip, |