aboutsummaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-15 20:52:24 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-15 20:52:24 +0000
commit073b469de9fe2d4cb9dac5050184d8e99b0a81d8 (patch)
tree0ebabd4036677e52c49c90f3dff736b3f377f056 /engine
parent7a7cfb8a7d78d53ec220e6a80d97c52d764eb8a0 (diff)
downloadelgg-073b469de9fe2d4cb9dac5050184d8e99b0a81d8.tar.gz
elgg-073b469de9fe2d4cb9dac5050184d8e99b0a81d8.tar.bz2
Correction for the search list users by name function.
git-svn-id: https://code.elgg.org/elgg/trunk@1956 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r--engine/lib/users.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/users.php b/engine/lib/users.php
index 35399770b..cc6494364 100644
--- a/engine/lib/users.php
+++ b/engine/lib/users.php
@@ -775,7 +775,7 @@
$offset = (int) get_input('offset');
$limit = (int) $limit;
$count = (int) search_for_user($tag, 10, 0, '', true);
- $entities = search_for_user($tag, $limit, 0);
+ $entities = search_for_user($tag, $limit, $offset);
return elgg_view_entity_list($entities, $count, $offset, $limit, $fullview);