summaryrefslogtreecommitdiff
path: root/modules/user/user.pages.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-12-31 08:54:37 +0000
committerDries Buytaert <dries@buytaert.net>2007-12-31 08:54:37 +0000
commit178c28535b5ed1a693c9e9cf5de4c703bc2bf3c6 (patch)
treee0a029015f481bd2ce1a85b3b73396244d91caf1 /modules/user/user.pages.inc
parentf04d4d17dd6a7c94bf10b564930a4448d5449c3d (diff)
downloadbrdo-178c28535b5ed1a693c9e9cf5de4c703bc2bf3c6.tar.gz
brdo-178c28535b5ed1a693c9e9cf5de4c703bc2bf3c6.tar.bz2
- Patch #204900 by webernet: code style fixes. Likely my last patch of the year. Fiew. Thanks all, and see you on the other side. :)
Diffstat (limited to 'modules/user/user.pages.inc')
-rw-r--r--modules/user/user.pages.inc7
1 files changed, 3 insertions, 4 deletions
diff --git a/modules/user/user.pages.inc b/modules/user/user.pages.inc
index d326b43b5..9262e4271 100644
--- a/modules/user/user.pages.inc
+++ b/modules/user/user.pages.inc
@@ -150,10 +150,9 @@ function user_view($account) {
drupal_set_title(check_plain($account->name));
// Retrieve all profile fields and attach to $account->content.
user_build_content($account);
- /**
- * To theme user profiles, copy modules/user/user_profile.tpl.php
- * to your theme directory, and edit it as instructed in that file's comments.
- */
+
+ // To theme user profiles, copy modules/user/user_profile.tpl.php
+ // to your theme directory, and edit it as instructed in that file's comments.
return theme('user_profile', $account);
}