aboutsummaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-13 12:27:12 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-13 12:27:12 +0000
commit55724ff6f6818f2c1b16d4bacd912ae2eb745fdb (patch)
tree5365657ba47de2e891d84965a6ba2bb98d4783d8 /index.php
parenta6e012278e2a33721e91ae36a7fda65804785440 (diff)
downloadelgg-55724ff6f6818f2c1b16d4bacd912ae2eb745fdb.tar.gz
elgg-55724ff6f6818f2c1b16d4bacd912ae2eb745fdb.tar.bz2
Added a new latest activity title to the front page
git-svn-id: https://code.elgg.org/elgg/trunk@1895 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 b6aa50ae1..c9d966b2f 100644
--- a/index.php
+++ b/index.php
@@ -27,13 +27,13 @@
//Load the front page
global $CONFIG;
- $title = elgg_view_title($CONFIG->site->title);
+ $title = elgg_view_title(elgg_echo('content:latest'));
set_context('search');
$content = list_registered_entities();
set_context('main');
global $autofeed;
$autofeed = false;
- $content = elgg_view_layout('two_column_left_sidebar', '', $content, elgg_view("account/forms/login"));
+ $content = elgg_view_layout('two_column_left_sidebar', '', $title . $content, elgg_view("account/forms/login"));
echo page_draw(null, $content);
}