summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-09-04 14:33:26 +0000
committerDries Buytaert <dries@buytaert.net>2006-09-04 14:33:26 +0000
commitd5af416e069ebc494f82390a5772f9aa1e5f208a (patch)
treee8ec4a23de97e940bfda1aba797de57c7bc76c7c
parent6c406e39a1ed8a5479b56bde46cf6be6b267e5bc (diff)
downloadbrdo-d5af416e069ebc494f82390a5772f9aa1e5f208a.tar.gz
brdo-d5af416e069ebc494f82390a5772f9aa1e5f208a.tar.bz2
- Patch #48344 by Tobias: fixed type in profile_browse().
-rw-r--r--modules/profile/profile.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/profile/profile.module b/modules/profile/profile.module
index 2d473203e..d924a2366 100644
--- a/modules/profile/profile.module
+++ b/modules/profile/profile.module
@@ -143,8 +143,8 @@ function profile_block($op = 'list', $delta = 0, $edit = array()) {
}
if ($fields) {
- $fields = _profile_update_user_fields($fields, $account);
- $output .= theme('profile_block', $account, $fields, TRUE);
+ $profile = _profile_update_user_fields($fields, $account);
+ $output .= theme('profile_block', $account, $profile, TRUE);
}
if (isset($use_fields['user_profile']) && $use_fields['user_profile']) {