diff options
Diffstat (limited to 'modules/user/user.pages.inc')
-rw-r--r-- | modules/user/user.pages.inc | 7 |
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); } |