From ab036224bb3093578085544d43c9a3d3128ebb08 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= <gabor@hojtsy.hu>
Date: Tue, 8 Jan 2008 11:27:16 +0000
Subject: [PATCH] #205792 by yched: fix contradictory messages after node
 access rebuild

---
 modules/node/node.module | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/modules/node/node.module b/modules/node/node.module
index 3f9a4062dde0..9f6714db141c 100644
--- a/modules/node/node.module
+++ b/modules/node/node.module
@@ -20,7 +20,10 @@
  * 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.');
-- 
GitLab