aboutsummaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/index.php b/index.php
index 14d3616e1..49f9abd92 100644
--- a/index.php
+++ b/index.php
@@ -34,13 +34,14 @@ if (!trigger_plugin_hook('index', 'system', null, FALSE)) {
$title = elgg_view_title(elgg_echo('content:latest'));
set_context('search');
$offset = (int)get_input('offset', 0);
- $content = elgg_list_registered_entities(array('limit' => 10, 'offset' => $offset, 'full_view' => FALSE, 'allowed_types' => array('object','group')));
+ $activity = elgg_list_registered_entities(array('limit' => 10, 'offset' => $offset, 'full_view' => FALSE, 'allowed_types' => array('object','group')));
set_context('main');
global $autofeed;
$autofeed = FALSE;
- // if drop-down login in header option not selected
- $login_form = elgg_view('account/forms/login');
+
+ // if drop-down login in header option not selected
+ $login_form = elgg_view('account/forms/login');
- $content .= elgg_view_layout('one_column_with_sidebar', $title, $login_form);
+ $content = elgg_view_layout('one_column_with_sidebar', $title . $activity, $login_form);
page_draw(null, $content);
}