From ccf95431994a2cb065bf2de59eee6dd4b4c11878 Mon Sep 17 00:00:00 2001 From: Angie Byron <webchick@24967.no-reply.drupal.org> Date: Mon, 3 Jan 2011 05:18:42 +0000 Subject: [PATCH] #904214 by moshe weitzman: Fixed administer comments does not respect node access. --- modules/comment/comment.admin.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/comment/comment.admin.inc b/modules/comment/comment.admin.inc index 1f0a516647db..1b050b106f8f 100644 --- a/modules/comment/comment.admin.inc +++ b/modules/comment/comment.admin.inc @@ -73,6 +73,7 @@ function comment_admin_overview($form, &$form_state, $arg) { $query = db_select('comment', 'c')->extend('PagerDefault')->extend('TableSort'); $query->join('node', 'n', 'n.nid = c.nid'); $query->addField('n', 'title', 'node_title'); + $query->addTag('node_access'); $result = $query ->fields('c', array('cid', 'subject', 'name', 'changed')) ->condition('c.status', $status) -- GitLab