diff options
author | Steve Clay <steve@mrclay.org> | 2012-12-01 20:09:11 -0500 |
---|---|---|
committer | Steve Clay <steve@mrclay.org> | 2012-12-01 22:21:53 -0500 |
commit | 9168cf7df39e404516c45f77bd64b47b3c61c75d (patch) | |
tree | 1ea3f7a999d4c33b2780b06ada411a82b74f9c99 /mod/profile/views/default | |
parent | 2f8d91ca5f506624773d96937779be449ca89aa0 (diff) | |
download | elgg-9168cf7df39e404516c45f77bd64b47b3c61c75d.tar.gz elgg-9168cf7df39e404516c45f77bd64b47b3c61c75d.tar.bz2 |
Make metadata prefetch respect access
Diffstat (limited to 'mod/profile/views/default')
-rw-r--r-- | mod/profile/views/default/profile/details.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/profile/views/default/profile/details.php b/mod/profile/views/default/profile/details.php index 3af5cb756..7b05b0e15 100644 --- a/mod/profile/views/default/profile/details.php +++ b/mod/profile/views/default/profile/details.php @@ -28,7 +28,7 @@ if (is_array($profile_fields) && sizeof($profile_fields) > 0) { <div class="<?php echo $even_odd; ?>"> <b><?php echo elgg_echo("profile:{$shortname}"); ?>: </b> <?php - echo elgg_view("output/{$valtype}", array('value' => $user->$shortname)); + echo elgg_view("output/{$valtype}", array('value' => $value)); ?> </div> <?php |