From 7ddd9521b3f3a397da3b0a6b56238d31414eb4be Mon Sep 17 00:00:00 2001 From: brettp Date: Thu, 28 Oct 2010 19:17:36 +0000 Subject: Standardized code in all of core, not including language files, tests, or core mods. git-svn-id: http://code.elgg.org/elgg/trunk@7124 36083f99-b078-4883-b0ff-0f9b5a30f544 --- index.php | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) (limited to 'index.php') diff --git a/index.php b/index.php index f97302c6d..833bab98e 100644 --- a/index.php +++ b/index.php @@ -22,26 +22,35 @@ if (!trigger_plugin_hook('index', 'system', null, FALSE)) { if(is_plugin_enabled('riverdashboard')){ $title = elgg_view_title(elgg_echo('content:latest')); set_context('search'); - $content = elgg_list_registered_entities(array('limit' => 10, 'full_view' => FALSE, 'allowed_types' => array('object','group'))); + $content = elgg_list_registered_entities(array('limit' => 10, ' + full_view' => FALSE, 'allowed_types' => array('object','group'))); set_context('main'); } */ - + //Load the front page $title = elgg_view_title(elgg_echo('content:latest')); set_context('search'); $offset = (int)get_input('offset', 0); - if(is_plugin_enabled('riverdashboard')) + if (is_plugin_enabled('riverdashboard')) { $activity = elgg_view_river_items(0, 0, '', '', '', '', 10, 0, 0, true, false); - else - $activity = elgg_list_registered_entities(array('limit' => 10, 'offset' => $offset, 'full_view' => FALSE, 'allowed_types' => array('object','group'))); + } else { + $options = array( + 'limit' => 10, + 'offset' => $offset, + 'full_view' => FALSE, + 'allowed_types' => array('object','group') + ); + + $activity = elgg_list_registered_entities($options); + } set_context('main'); global $autofeed; $autofeed = FALSE; // 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 . $activity, $login_form); page_draw(null, $content); } -- cgit v1.2.3