diff options
Diffstat (limited to 'mod/profile')
-rw-r--r-- | mod/profile/index.php | 2 |
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 {
|