diff options
Diffstat (limited to 'modules/node')
-rw-r--r-- | modules/node/node.module | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 3f9a4062d..9f6714db1 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -20,7 +20,10 @@ define('NODE_BUILD_PRINT', 5); * Implementation of hook_help(). */ function node_help($path, $arg) { - if ($path != 'admin/content/node-settings/rebuild' && strpos($path, '#') === FALSE + // Remind site administrators about the {node_access} table being flagged + // for rebuild. We don't need to issue the message on the confirm form, or + // while the rebuild is being processed. + if ($path != 'admin/content/node-settings/rebuild' && $path != 'batch' && strpos($path, '#') === FALSE && user_access('access administration pages') && node_access_needs_rebuild()) { if ($path == 'admin/content/node-settings') { $message = t('The content access permissions need to be rebuilt.'); |