Index: modules/profile/profile.info =================================================================== RCS file: /cvs/drupal/drupal/modules/profile/profile.info,v retrieving revision 1.10 diff -u -p -r1.10 profile.info --- modules/profile/profile.info 17 Nov 2009 21:24:18 -0000 1.10 +++ modules/profile/profile.info 15 Feb 2010 01:51:57 -0000 @@ -1,5 +1,5 @@ ; $Id: profile.info,v 1.10 2009/11/17 21:24:18 dries Exp $ -name = Profile +name = Profile (deprecated) description = Supports configurable user profiles. package = Core version = VERSION Index: modules/profile/profile.module =================================================================== RCS file: /cvs/drupal/drupal/modules/profile/profile.module,v retrieving revision 1.287 diff -u -p -r1.287 profile.module --- modules/profile/profile.module 13 Jan 2010 14:01:34 -0000 1.287 +++ modules/profile/profile.module 15 Feb 2010 01:51:57 -0000 @@ -34,6 +34,7 @@ function profile_help($path, $arg) { case 'admin/help#profile': $output = ''; $output .= '

' . t('About') . '

'; + $output .= '

' . t('This module has been deprecated for Drupal 7 and is only recommended for sites upgrading from Drupal 6 with existing profile data. If starting a new site, consider the contributed profile 2 module. If you only need to add a small number of metadata fields to users, your needs may be better suited by using the Field UI module to add fields to users directly.', array('@profile2' => 'http://drupal.org/project/profile2')) . '

'; $output .= '

' . t('The Profile module allows site administrators to define custom fields (such as country, full name, or age) for user profiles, which are then displayed in the My Account section. This permits users of a site to share more information about themselves, and can help community-based sites organize users around specific information. For more information, see the online handbook entry for Profile module.', array('@user' => url('user'), '@profile' => 'http://drupal.org/handbook/modules/profile/')) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '
';