aboutsummaryrefslogtreecommitdiff
path: root/entities
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-08-22 22:37:30 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-08-22 22:37:30 +0000
commitca08eb6d170d375ef4fca53604956f3474c7db19 (patch)
treea1e96c6b0ae322fab93373a66e1951e2b3b9be48 /entities
parentbe37104ac63cd25f2eac831ca03d6d2b19976e1c (diff)
downloadelgg-ca08eb6d170d375ef4fca53604956f3474c7db19.tar.gz
elgg-ca08eb6d170d375ef4fca53604956f3474c7db19.tar.bz2
Merged r6701:6756 from 1.7 branch into trunk
git-svn-id: http://code.elgg.org/elgg/trunk@6849 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'entities')
-rw-r--r--entities/list.php11
1 files changed, 7 insertions, 4 deletions
diff --git a/entities/list.php b/entities/list.php
index c121d010c..280336cef 100644
--- a/entities/list.php
+++ b/entities/list.php
@@ -1,6 +1,6 @@
<?php
/**
- * Activity viewer
+ * Entity viewer
*
* @package Elgg
* @subpackage Core
@@ -9,8 +9,11 @@
*/
require_once(dirname(dirname(__FILE__)) . "/engine/start.php");
+
set_context('search');
-$area2 = elgg_list_entities("","",0,10,false);
+$area2 = elgg_list_entities();
set_context('entities');
-$body = elgg_view_layout('two_column_left_sidebar',$area1, $area2);
-page_draw("",$body); \ No newline at end of file
+
+$body = elgg_view_layout('two_column_left_sidebar', $area1, $area2);
+
+page_draw("", $body); \ No newline at end of file