diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-06-04 20:09:29 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-06-04 20:09:29 +0000 |
commit | aba81ab9ddebb1ec20f5348d011ee714a1912941 (patch) | |
tree | ce4e9844a0d830d4d494289624af1b61aa3b6fc8 /modules | |
parent | f179a802367e561d6c9675f79a48fa98d1b2620d (diff) | |
download | brdo-aba81ab9ddebb1ec20f5348d011ee714a1912941.tar.gz brdo-aba81ab9ddebb1ec20f5348d011ee714a1912941.tar.bz2 |
#480660 follow-up by catch: Code style changes and changelog entry.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/user/user.admin.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/user/user.admin.inc b/modules/user/user.admin.inc index 303d2ff0a..f5f6117f4 100644 --- a/modules/user/user.admin.inc +++ b/modules/user/user.admin.inc @@ -254,10 +254,10 @@ function user_admin_settings() { // Administrative role option. $form['admin_role'] = array( '#type' => 'fieldset', - '#title' => t ('Administrator role'), + '#title' => t('Administrator role'), ); - // Don't allow users to set the anonymous or authenticated user roles as the + // Do not allow users to set the anonymous or authenticated user roles as the // administrator role. $roles = user_roles(); $roles = array_slice($roles, 2, NULL, TRUE); @@ -944,7 +944,7 @@ function user_modules_installed($modules) { db_insert('role_permission') ->fields(array( 'rid' => $rid, - 'permission' => $permission, + 'permission' => $permission, ))->execute(); } } |