summaryrefslogtreecommitdiff
path: root/modules/profile.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-11-23 10:43:30 +0000
committerDries Buytaert <dries@buytaert.net>2005-11-23 10:43:30 +0000
commit86db338c64bc8da4673500ce60ef1f1075b34df3 (patch)
tree70ac412cf775210b689ea47208e3ee6cbf96ef3a /modules/profile.module
parent90b3e88ec4b416f3bbc987842a11b6786bd8dc81 (diff)
downloadbrdo-86db338c64bc8da4673500ce60ef1f1075b34df3.tar.gz
brdo-86db338c64bc8da4673500ce60ef1f1075b34df3.tar.bz2
- Patch #/38339 by crunchywelch: make the profile module display fields properly.
Diffstat (limited to 'modules/profile.module')
-rw-r--r--modules/profile.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/profile.module b/modules/profile.module
index 43adbe58d..605e9ccb3 100644
--- a/modules/profile.module
+++ b/modules/profile.module
@@ -318,8 +318,8 @@ function profile_view_profile($user) {
if ($value = profile_view_field($user, $field)) {
$description = ($field->visibility == PROFILE_PRIVATE) ? t('The content of this field is private and only visible to yourself.') : '';
$title = ($field->type != 'checkbox') ? check_plain($field->title) : '';
- $form = array('#type' => 'item', '#title' => $title, '#value' => $value, '#description' => $description);
- $fields[$field->category][$field->name] = drupal_get_form('profile_view_profile_' . $field->category .'_'. $field->name, $form, 'profile_view_profile');
+ $form = array('#title' => $title, '#value' => $value, '#description' => $description);
+ $fields[$field->category][$field->name] = theme('item', $form);
}
}