diff options
Diffstat (limited to 'phpBB/admin/index.php')
-rw-r--r-- | phpBB/admin/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/admin/index.php b/phpBB/admin/index.php index f361eea9ad..c2c0671609 100644 --- a/phpBB/admin/index.php +++ b/phpBB/admin/index.php @@ -443,7 +443,7 @@ elseif( isset($HTTP_GET_VARS['pane']) && $HTTP_GET_VARS['pane'] == 'right' ) $row_color = ( $registered_users % 2 ) ? $theme['td_color1'] : $theme['td_color2']; $row_class = ( $registered_users % 2 ) ? $theme['td_class1'] : $theme['td_class2']; - $reg_ip = decode_ip($onlinerow_reg[$i]['session_ip']); + $reg_ip = $onlinerow_reg[$i]['session_ip']; $template->assign_block_vars("reg_user_row", array( "ROW_COLOR" => "#" . $row_color, @@ -535,7 +535,7 @@ elseif( isset($HTTP_GET_VARS['pane']) && $HTTP_GET_VARS['pane'] == 'right' ) $row_color = ( $guest_users % 2 ) ? $theme['td_color1'] : $theme['td_color2']; $row_class = ( $guest_users % 2 ) ? $theme['td_class1'] : $theme['td_class2']; - $guest_ip = decode_ip($onlinerow_guest[$i]['session_ip']); + $guest_ip = $onlinerow_guest[$i]['session_ip']; $template->assign_block_vars("guest_user_row", array( "ROW_COLOR" => "#" . $row_color, |