diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-12-25 22:09:39 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-12-25 22:09:39 +0000 |
commit | c4119e9bbb75b860fcc2fac44e8a2844acc7acb5 (patch) | |
tree | d0defcc4e5840268d62425bb02740f5c34dada7c /modules/node/node.module | |
parent | c45264163cd715d6105af2af53f11dfe5b519a92 (diff) | |
download | brdo-c4119e9bbb75b860fcc2fac44e8a2844acc7acb5.tar.gz brdo-c4119e9bbb75b860fcc2fac44e8a2844acc7acb5.tar.bz2 |
#105178 by ChrisKennedy. Remove an extra a word.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 77a31ad9d..bbff1ba35 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -970,7 +970,7 @@ function node_configure() { // Only show rebuild button if there is 0 or more than 2 rows in node_access table, or if there are modules that implement node_grant. if (db_result(db_query('SELECT COUNT(*) FROM {node_access}')) != 1 || count(module_implements('node_grant'))) { $status = '<p>'. t('If the site is experiencing problems with permissions to content, you may have to rebuild the permissions cache. Possible causes for permission problems are disabling modules or configuration changes to permissions. Rebuilding will remove all privileges to posts, and replace them with permissions based on the current modules and settings.') .'</p>'; - $status .= '<p>'. t('Rebuilding may take some time if there is a lot of a content or complex permission settings. After rebuilding has completed posts will automatically use the new permissions.'). '</p>'; + $status .= '<p>'. t('Rebuilding may take some time if there is a lot of content or complex permission settings. After rebuilding has completed posts will automatically use the new permissions.'). '</p>'; $form['access'] = array('#type' => 'fieldset', '#title' => t('Node access status')); $form['access']['status'] = array('#value' => $status); |