diff options
Diffstat (limited to 'modules/user')
-rw-r--r-- | modules/user/user.info | 4 | ||||
-rw-r--r-- | modules/user/user.module | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/modules/user/user.info b/modules/user/user.info new file mode 100644 index 000000000..e9bd85f39 --- /dev/null +++ b/modules/user/user.info @@ -0,0 +1,4 @@ +; $Id$ +name = User +description = Manages the user registration and login system. + diff --git a/modules/user/user.module b/modules/user/user.module index a61ba6b1a..27bfaf014 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -2267,8 +2267,6 @@ function user_help($section) { ', array('@user' => url('user'), '@admin-user' => url('admin/user/user'), '@admin-themes' => url('admin/build/themes'), '@admin-help-profile' => url('admin/help/profile'), '@admin-help-system' => url('admin/help/system'))); $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@user">User page</a>.', array('@user' => 'http://drupal.org/handbook/modules/user/')) .'</p>'; return $output; - case 'admin/settings/modules#description': - return t('Manages the user registration and login system.'); case 'admin/user/user': return t('<p>Drupal allows users to register, login, log out, maintain user profiles, etc. Users of the site may not use their own names to post content until they have signed up for a user account.</p>'); case 'admin/user/user/create': |