diff options
-rw-r--r-- | modules/profile/profile.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/profile/profile.module b/modules/profile/profile.module index 8f0458984..33ba23ea6 100644 --- a/modules/profile/profile.module +++ b/modules/profile/profile.module @@ -312,8 +312,8 @@ function profile_view_profile(&$user) { $user->content[$field->category][$field->name] = array( '#type' => 'user_profile_item', - '#title' => check_plain($title), - '#value' => check_markup($value), + '#title' => $title, + '#value' => $value, '#weight' => $field->weight, '#attributes' => array('class' => 'profile-'. $field->name), ); |