diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-09-06 11:16:39 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-09-06 11:16:39 +0000 |
commit | 40fba3d73b79b58b2130338da1f40befec7c4283 (patch) | |
tree | 89d02878c8eba45c53456777acc1fd2709f52bd6 | |
parent | 30b26cc4b8aee78bda91cd932db37339c8f3e9b0 (diff) | |
download | brdo-40fba3d73b79b58b2130338da1f40befec7c4283.tar.gz brdo-40fba3d73b79b58b2130338da1f40befec7c4283.tar.bz2 |
- Patch #77936 by Robert: fixed variable name.
-rw-r--r-- | modules/user/user.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index 6f73803a7..0ab677aa2 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -581,7 +581,7 @@ function user_block($op = 'list', $delta = 0, $edit = array()) { if ($authenticated_count && $max_users) { $items = array(); - while ($max_users-- && $account = db_fetch_object($users)) { + while ($max_users-- && $account = db_fetch_object($authenticated_users)) { $items[] = $account; } |