aboutsummaryrefslogtreecommitdiff
path: root/mod/profile
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-16 17:50:27 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-16 17:50:27 +0000
commit766959d366ad3316759656c9ce83978b18c904e5 (patch)
treebe24841a0fe9be1a20e8bcc5a793f0ffae9b3056 /mod/profile
parentb85f962561fb516cb774e6028fde869aedb75f12 (diff)
downloadelgg-766959d366ad3316759656c9ce83978b18c904e5.tar.gz
elgg-766959d366ad3316759656c9ce83978b18c904e5.tar.bz2
Fixes #162
git-svn-id: https://code.elgg.org/elgg/trunk@1447 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile')
-rw-r--r--mod/profile/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/profile/index.php b/mod/profile/index.php
index e1f4f1651..c055333c0 100644
--- a/mod/profile/index.php
+++ b/mod/profile/index.php
@@ -19,7 +19,7 @@
// Try and get the user from the username and set the page body accordingly
if ($user = get_user_by_username($username)) {
- $body = elgg_view_entity($user,"",true);
+ $body = elgg_view_entity($user,true);
$title = $user->name;
} else {