]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Fixes #2084 - layout issue with front page
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Mon, 26 Apr 2010 11:11:09 +0000 (11:11 +0000)
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Mon, 26 Apr 2010 11:11:09 +0000 (11:11 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@5869 36083f99-b078-4883-b0ff-0f9b5a30f544

index.php

index 14d3616e1400e9382e1fc5623f8c6bc5225bbb2e..49f9abd9272ef4a492fb33ced63635229c35bd4e 100644 (file)
--- 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);
 }