From 0b081cf87b0bdc8149515453fe5ca02142551550 Mon Sep 17 00:00:00 2001 From: Karl 'vollmerk' Vollmer Date: Sun, 29 Mar 2009 19:18:16 +0000 Subject: slight tweak to what the ip history looks like, made it look more like the other parts of ampache --- admin/users.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'admin') diff --git a/admin/users.php b/admin/users.php index 0255df6a..1f487980 100644 --- a/admin/users.php +++ b/admin/users.php @@ -169,11 +169,11 @@ switch ($_REQUEST['action']) { /* get the user and their history */ $working_user = new User($_REQUEST['user_id']); - if (!isset ($_REQUEST['all'])){ - $history = $working_user->get_ip_history('',1); + if (!isset($_REQUEST['all'])){ + $history = $working_user->get_ip_history(0,1); } else { - $history = $working_user->get_ip_history('',''); + $history = $working_user->get_ip_history(); } require Config::get('prefix') . '/templates/show_ip_history.inc.php'; break; -- cgit