diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-09-19 09:37:54 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-09-19 09:37:54 +0000 |
commit | ed5190b8f4030232b73ef220da93f390e7cdb1f6 (patch) | |
tree | 382c4234457ec0cc63e3367a33da7692bc3d30f9 /friends | |
parent | 02ac7c3deec32191cf57d56bd67bd46eaa6830ee (diff) | |
download | elgg-ed5190b8f4030232b73ef220da93f390e7cdb1f6.tar.gz elgg-ed5190b8f4030232b73ef220da93f390e7cdb1f6.tar.bz2 |
Closes #358 and #359. Well spotted.
git-svn-id: https://code.elgg.org/elgg/trunk@2099 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'friends')
-rw-r--r-- | friends/index.php | 2 | ||||
-rw-r--r-- | friends/of.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/friends/index.php b/friends/index.php index 8f4e3d09c..d7e02f168 100644 --- a/friends/index.php +++ b/friends/index.php @@ -17,7 +17,7 @@ $owner = $_SESSION['user'];
}
- $area1 = elgg_view_title(elgg_echo('Friends'));
+ $area1 = elgg_view_title(elgg_echo('friends'));
$area2 = list_entities_from_relationship('friend',$owner->getGUID(),false,'user','',0,10,false);
$body = elgg_view_layout('two_column_left_sidebar', '', $area1 . $area2);
diff --git a/friends/of.php b/friends/of.php index 42e8867c0..82325f6f6 100644 --- a/friends/of.php +++ b/friends/of.php @@ -17,7 +17,7 @@ $owner = $_SESSION['user'];
}
- $area1 = elgg_view_title(elgg_echo('Friends of'));
+ $area1 = elgg_view_title(elgg_echo('friends:of'));
$area2 = list_entities_from_relationship('friend',$owner->getGUID(),true,'user','',0,10,false);
$body = elgg_view_layout('two_column_left_sidebar', '', $area1 . $area2);
|