aboutsummaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-10-30 16:54:55 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-10-30 16:54:55 +0000
commitd5ea193dfb80cd5d35d02428363f9ce18aa01205 (patch)
tree7c6183c100f0f14b079f04fe1347849795395019 /index.php
parent1b253c3e6aff377472048f3ebc5d1421732b9697 (diff)
downloadelgg-d5ea193dfb80cd5d35d02428363f9ce18aa01205.tar.gz
elgg-d5ea193dfb80cd5d35d02428363f9ce18aa01205.tar.bz2
No longer using fullview for listing registered entities on front page.
git-svn-id: http://code.elgg.org/elgg/trunk@3609 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'index.php')
-rw-r--r--index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.php b/index.php
index 18ca84d56..b6df6b3c1 100644
--- a/index.php
+++ b/index.php
@@ -27,10 +27,10 @@ if (!trigger_plugin_hook('index','system',null,false)) {
global $CONFIG;
$title = elgg_view_title(elgg_echo('content:latest'));
set_context('search');
- $content = list_registered_entities(0,10,true,false,array('object','group'));
+ $content = list_registered_entities(0,10,false,false,array('object','group'));
set_context('main');
global $autofeed;
$autofeed = false;
$content = elgg_view_layout('two_column_left_sidebar', '', $title . $content, elgg_view("account/forms/login"));
page_draw(null, $content);
-} \ No newline at end of file
+}