summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-05-26 19:03:05 +0000
committerDries Buytaert <dries@buytaert.net>2005-05-26 19:03:05 +0000
commitf68f9111ca0de803400daeb4ba8f2d1e0ec8669b (patch)
tree6833a67eeae8e9ba0d86e3ba8bfbe8647b2b2a00
parente579f4d4074b728c81fcfb1078b231caa69244e9 (diff)
downloadbrdo-f68f9111ca0de803400daeb4ba8f2d1e0ec8669b.tar.gz
brdo-f68f9111ca0de803400daeb4ba8f2d1e0ec8669b.tar.bz2
- Patch #23633 by Moshe: improve grouping in default profile page.
-rw-r--r--modules/user.module2
-rw-r--r--modules/user/user.module2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/user.module b/modules/user.module
index 98c44dab8..e2da4465d 100644
--- a/modules/user.module
+++ b/modules/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";
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";