diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-09-02 22:02:54 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-09-02 22:02:54 +0000 |
commit | 19469ed26e583137e72ac10759b8a0a3c0b2cb1d (patch) | |
tree | 69d488a0ee94979313cd0c67d017204b2aa8808e /phpBB/admin/index.php | |
parent | 29ea1679eb08080ba6d1b0639cf38ad2a4c2a27c (diff) | |
download | forums-19469ed26e583137e72ac10759b8a0a3c0b2cb1d.tar forums-19469ed26e583137e72ac10759b8a0a3c0b2cb1d.tar.gz forums-19469ed26e583137e72ac10759b8a0a3c0b2cb1d.tar.bz2 forums-19469ed26e583137e72ac10759b8a0a3c0b2cb1d.tar.xz forums-19469ed26e583137e72ac10759b8a0a3c0b2cb1d.zip |
Removed url output for location
git-svn-id: file:///svn/phpbb/trunk@972 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/admin/index.php')
-rw-r--r-- | phpBB/admin/index.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/phpBB/admin/index.php b/phpBB/admin/index.php index 86cd7de512..c7d6ae0dea 100644 --- a/phpBB/admin/index.php +++ b/phpBB/admin/index.php @@ -376,7 +376,7 @@ elseif( $HTTP_GET_VARS['pane'] == 'right' ) $location = $forum_data[$onlinerow[$i]['session_page']]; } - $row_color = "#" . ( ( !($count % 2) ) ? $theme['td_color1'] : $theme['td_color2']); + $row_color = ( !($count % 2) ) ? $theme['td_color1'] : $theme['td_color2']; $row_class = ( !($count % 2) ) ? $theme['td_class1'] : $theme['td_class2']; $count++; @@ -393,15 +393,14 @@ elseif( $HTTP_GET_VARS['pane'] == 'right' ) } $template->assign_block_vars("userrow", array( - "ROW_COLOR" => $row_color, + "ROW_COLOR" => "#" . $row_color, "ROW_CLASS" => $row_class, "USERNAME" => $username, "LOGGED_ON" => $logged_on, "LASTUPDATE" => create_date($board_config['default_dateformat'], $onlinerow[$i]['session_time'], $board_config['default_timezone']), "LOCATION" => $location, "IP_ADDRESS" => $ip_address, - "U_USER_PROFILE" => append_sid("admin_user.$phpEx?" . POST_USERS_URL . "=" . $onlinerow[$i]['user_id']), - "U_FORUM_LOCATION" => append_sid($location_url)) + "U_USER_PROFILE" => append_sid("admin_users.$phpEx?" . POST_USERS_URL . "=" . $onlinerow[$i]['user_id'])) ); } } |