summaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-02-09 23:29:20 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-02-09 23:29:20 +0000
commit23678d5d79c5fad0f9e32ade11fbf136aab0e3f6 (patch)
tree4e48886cae8dac8ac8cd6a9c29916a6e768cd7f4 /admin
parentdf0e3a9e2c55406e45741428bed06130d3f54aa1 (diff)
downloadampache-23678d5d79c5fad0f9e32ade11fbf136aab0e3f6.tar.gz
ampache-23678d5d79c5fad0f9e32ade11fbf136aab0e3f6.tar.bz2
ampache-23678d5d79c5fad0f9e32ade11fbf136aab0e3f6.zip
fixed ip history to work with the new id method of referencing users
Diffstat (limited to 'admin')
-rw-r--r--admin/users.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/users.php b/admin/users.php
index 268aa075..6ddc7fbd 100644
--- a/admin/users.php
+++ b/admin/users.php
@@ -148,7 +148,7 @@ switch ($action) {
/* Show IP History for the Specified User */
case 'show_ip_history':
/* get the user and their history */
- $temp_user = new User($_REQUEST['user_id']);
+ $working_user = new User($_REQUEST['user_id']);
if (!isset ($_REQUEST['all'])){
$history = $temp_user->get_ip_history('',1);
} else {