diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-04-26 11:11:09 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-04-26 11:11:09 +0000 |
commit | ab5f815bc06fef117c1ec32a7986a437259019d4 (patch) | |
tree | 81905755f2e3967a1c4680ca80133f8bc671df4e /index.php | |
parent | 8d1f36a66294b8871a10cf44df946098936d11ff (diff) | |
download | elgg-ab5f815bc06fef117c1ec32a7986a437259019d4.tar.gz elgg-ab5f815bc06fef117c1ec32a7986a437259019d4.tar.bz2 |
Fixes #2084 - layout issue with front page
git-svn-id: http://code.elgg.org/elgg/trunk@5869 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -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); } |