aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/views/default/profile/profile_navigation.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-03 22:13:10 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-03 22:13:10 +0000
commiteff4faea7f3c95440f02ea45d0be4f67236e2bf3 (patch)
tree57d51ef4bc84547d60c9a6faae7d5ff5d82d00f9 /mod/profile/views/default/profile/profile_navigation.php
parent4b501dda1d62195531e4c2ab1bd84971c0cd4e37 (diff)
downloadelgg-eff4faea7f3c95440f02ea45d0be4f67236e2bf3.tar.gz
elgg-eff4faea7f3c95440f02ea45d0be4f67236e2bf3.tar.bz2
Fixes #1320: Bundled mods use elgg_echo()'s internal string substitution.
git-svn-id: http://code.elgg.org/elgg/trunk@7229 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/views/default/profile/profile_navigation.php')
-rwxr-xr-xmod/profile/views/default/profile/profile_navigation.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/mod/profile/views/default/profile/profile_navigation.php b/mod/profile/views/default/profile/profile_navigation.php
index b441b949f..a27cf789d 100755
--- a/mod/profile/views/default/profile/profile_navigation.php
+++ b/mod/profile/views/default/profile/profile_navigation.php
@@ -8,7 +8,7 @@ if (isset($vars['section'])) {
$user = $vars['entity'];
if (!$user) {
// no user so no profile
- echo sprintf(elgg_echo('viewfailure'), __FILE__);
+ echo elgg_echo('viewfailure', array(__FILE__));
return TRUE;
}
@@ -20,7 +20,7 @@ $twitter = '';
$url = "{$user->getURL()}/";
-//select section
+//select section
switch($section){
case 'friends':
$friends = 'class="selected"';
@@ -35,7 +35,7 @@ switch($section){
case 'twitter':
$twitter = 'class="selected"';
break;
-
+
case 'commentwall':
$commentwall = 'class="selected"';
break;
@@ -60,7 +60,7 @@ switch($section){
<li <?php echo $twitter; ?>><a href="<?php echo $url . 'twitter'; ?>">Twitter</a></li>
<?php
}
-
+
//insert a view which others can extend
echo elgg_view('profile_navigation/extend', array('entity' => $user));
?>