diff options
Diffstat (limited to 'modules/user/user.module')
-rw-r--r-- | modules/user/user.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index 98c44dab8..e2da4465d 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -605,7 +605,7 @@ function theme_user_profile($account, $fields) { $output = "<div class=\"profile\">\n"; $output .= theme('user_picture', $account); foreach ($fields as $category => $value) { - $output .= "<h2>$category</h2>$value"; + $output .= theme('box', $category, $value); } $output .= "</div>\n"; |