summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-02-17 08:54:51 +0000
committerDries Buytaert <dries@buytaert.net>2010-02-17 08:54:51 +0000
commit8ee010911c4762c528987ba462672429786831cb (patch)
treeabe310443e12ea6e3f9f9cf5445f99f0d226b2f8
parent98504c7cc2dde4fc9793afbab046485581422c8e (diff)
downloadbrdo-8ee010911c4762c528987ba462672429786831cb.tar.gz
brdo-8ee010911c4762c528987ba462672429786831cb.tar.bz2
- Patch #699842 by jhodgdon: corrected help texts and links that were broken with moving the permissions-page.
-rw-r--r--modules/user/user.module10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/user/user.module b/modules/user/user.module
index 6e242d997..6452c81d7 100644
--- a/modules/user/user.module
+++ b/modules/user/user.module
@@ -32,9 +32,9 @@ function user_help($path, $arg) {
$output .= '<dt>' . t('Creating and managing users') . '</dt>';
$output .= '<dd>' . t('The User module allows users with the appropriate <a href="@permissions">permissions</a> to create user accounts through the <a href="@people">People administration page</a>, where they can also assign users to one or more roles, and block or delete user accounts. If allowed, users without accounts (anonymous users) can create their own accounts on the <a href="@register">Create new account</a> page.', array('@permissions' => url('admin/people/permissions', array('fragment' => 'module-user')), '@people' => url('admin/people'), '@register' => url('user/register'))) . '</dd>';
$output .= '<dt>' . t('User roles and permissions') . '</dt>';
- $output .= '<dd>' . t('<em>Roles</em> are used to group and classify users; each user can be assigned one or more roles. By default there are two roles: <em>anonymous user</em> (users that are not logged in) and <em>authenticated user</em> (users that are registered and logged in). Depending on choices you made when you installed Drupal, the installation process may have defined more roles, and you can create additional custom roles on the <a href="@roles">Roles page</a>. After creating roles, you can set permissions for each role on the <a href="@permissions_user">Permissions page</a>. Granting a permission allows users who have been assigned a particular role to perform an action on the site, such as viewing a particular type of content, editing or creating content, administering settings for a particular module, or using a particular function of the site (such as search).', array('@permissions_user' => url('admin/config/people/permissions'), '@roles' => url('admin/people/roles'))) . '</dd>';
+ $output .= '<dd>' . t('<em>Roles</em> are used to group and classify users; each user can be assigned one or more roles. By default there are two roles: <em>anonymous user</em> (users that are not logged in) and <em>authenticated user</em> (users that are registered and logged in). Depending on choices you made when you installed Drupal, the installation process may have defined more roles, and you can create additional custom roles on the <a href="@roles">Roles page</a>. After creating roles, you can set permissions for each role on the <a href="@permissions_user">Permissions page</a>. Granting a permission allows users who have been assigned a particular role to perform an action on the site, such as viewing a particular type of content, editing or creating content, administering settings for a particular module, or using a particular function of the site (such as search).', array('@permissions_user' => url('admin/people/permissions'), '@roles' => url('admin/people/permissions/roles'))) . '</dd>';
$output .= '<dt>' . t('Account settings') . '</dt>';
- $output .= '<dd>' . t('The <a href="@accounts">Account settings page</a> allows you to manage settings for the displayed name of the anonymous user role, personal contact forms, user registration, and account cancellation. On this page you can also manage settings for account personalization (including signatures and user pictures), and adapt the text for the e-mail messages that are sent automatically during the user registration process.', array('@accounts' => url('admin/people/accounts'))) . '</dd>';
+ $output .= '<dd>' . t('The <a href="@accounts">Account settings page</a> allows you to manage settings for the displayed name of the anonymous user role, personal contact forms, user registration, and account cancellation. On this page you can also manage settings for account personalization (including signatures and user pictures), and adapt the text for the e-mail messages that are sent automatically during the user registration process.', array('@accounts' => url('admin/config/people/accounts'))) . '</dd>';
$output .= '</dl>';
return $output;
case 'admin/people/create':
@@ -1520,7 +1520,7 @@ function user_menu() {
// User listing pages.
$items['admin/people'] = array(
'title' => 'People',
- 'description' => 'Manage user accounts',
+ 'description' => 'Manage user accounts, roles, and permissions',
'page callback' => 'user_admin',
'page arguments' => array('list'),
'access arguments' => array('administer users'),
@@ -1579,7 +1579,7 @@ function user_menu() {
// Administration pages.
$items['admin/config/people'] = array(
'title' => 'People',
- 'description' => 'Configure user accounts, roles and permissions.',
+ 'description' => 'Configure user accounts.',
'position' => 'right',
'page callback' => 'system_admin_menu_block_page',
'access arguments' => array('access administration pages'),
@@ -1588,7 +1588,7 @@ function user_menu() {
);
$items['admin/config/people/accounts'] = array(
'title' => 'Account settings',
- 'description' => 'Configure default behavior of users, including registration requirements, e-mails, and user pictures.',
+ 'description' => 'Configure default behavior of users, including registration requirements, e-mails, fields, and user pictures.',
'page callback' => 'drupal_get_form',
'page arguments' => array('user_admin_settings'),
'access arguments' => array('administer users'),