diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-09-07 03:21:50 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-09-07 03:21:50 +0000 |
commit | ca5e71d37435e8843b89ac650b19499fd6741970 (patch) | |
tree | 4d0ad8b010ea3b0fa35e4c4f64328673129d1509 | |
parent | 67de0e433ef3aca63949c656af0cb37b906ba2b4 (diff) | |
download | elgg-ca5e71d37435e8843b89ac650b19499fd6741970.tar.gz elgg-ca5e71d37435e8843b89ac650b19499fd6741970.tar.bz2 |
Fixes #1207: Using fullviews with proper list_entity params.
git-svn-id: https://code.elgg.org/elgg/trunk@3473 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | admin/user.php | 4 | ||||
-rw-r--r-- | views/default/search/entity_list.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/admin/user.php b/admin/user.php index 16b5bf172..a95bb69ce 100644 --- a/admin/user.php +++ b/admin/user.php @@ -31,7 +31,7 @@ set_context('search'); - $result = list_entities('user'); + $result = list_entities('user', '', 0, $limit, false); set_context('admin'); @@ -42,4 +42,4 @@ $title . elgg_view("admin/user") . $result) ); -?>
\ No newline at end of file +?> diff --git a/views/default/search/entity_list.php b/views/default/search/entity_list.php index 12d9d5607..f0438fa11 100644 --- a/views/default/search/entity_list.php +++ b/views/default/search/entity_list.php @@ -9,7 +9,7 @@ $context = $vars['context'];
$viewtype = $vars['viewtype'];
$pagination = $vars['pagination'];
- //$fullview = $vars['fullview'];
+ $fullview = $vars['fullview'];
$html = "";
$nav = "";
@@ -59,4 +59,4 @@ echo $html;
-?>
\ No newline at end of file +?>
|