Index: modules/user/user.admin.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/user/user.admin.inc,v retrieving revision 1.90 diff -u -p -r1.90 user.admin.inc --- modules/user/user.admin.inc 28 Nov 2009 21:44:54 -0000 1.90 +++ modules/user/user.admin.inc 30 Nov 2009 05:02:51 -0000 @@ -852,10 +852,10 @@ function theme_user_admin_new_role($vari foreach (user_roles() as $rid => $name) { $edit_permissions = l(t('edit permissions'), 'admin/config/people/permissions/' . $rid); if (!in_array($rid, array(DRUPAL_ANONYMOUS_RID, DRUPAL_AUTHENTICATED_RID))) { - $rows[] = array($name, l(t('edit role'), 'admin/config/people/roles/edit/' . $rid), $edit_permissions); + $rows[] = array($name, $edit_permissions, l(t('rename or delete role'), 'admin/config/people/roles/edit/' . $rid)); } else { - $rows[] = array($name, t('locked'), $edit_permissions); + $rows[] = array($name, $edit_permissions, t('locked')); } } $rows[] = array(drupal_render($form['name']), array('data' => drupal_render($form['submit']), 'colspan' => 2)); Index: modules/user/user.module =================================================================== RCS file: /cvs/drupal/drupal/modules/user/user.module,v retrieving revision 1.1084 diff -u -p -r1.1084 user.module --- modules/user/user.module 22 Nov 2009 04:22:54 -0000 1.1084 +++ modules/user/user.module 30 Nov 2009 05:02:52 -0000 @@ -2750,7 +2750,7 @@ function user_help($path, $arg) { case 'admin/config/people/permissions': return '
' . t('Permissions let you control what users can do and see on your site. You can define a specific set of permissions for each role. (See the Roles page to create a role). Two important roles to consider are Authenticated Users and Administrators. Any permissions granted to the Authenticated Users role will be given to any user who can log into your site. You can make any role the Administrator role for the site, meaning this will be granted all new permissions automatically. You can do this on the User Settings page. You should be careful to ensure that only trusted users are given this access and level of control of your site.', array('@role' => url('admin/config/people/roles'), '@settings' => url('admin/config/people/accounts'))) . '
'; case 'admin/config/people/roles': - return t('Roles allow you to fine tune the security and administration of Drupal. A role defines a group of users that have certain privileges as defined in user permissions. Examples of roles include: anonymous user, authenticated user, moderator, administrator and so on. In this area you will define the role names of the various roles. To delete a role choose "edit".
By default, Drupal comes with two user roles:
+ return t('Roles allow you to fine tune the security and administration of Drupal. A role defines a group of users that have certain privileges as defined in user permissions. Examples of roles include: anonymous user, authenticated user, moderator, administrator and so on. In this area you will define the role names of the various roles.
By default, Drupal comes with two user roles: