From 9cd36863b0c7ee8b5ffa00c26e0f11515cab4ddd Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 23 Jan 2005 16:20:10 +0000 Subject: - I had to modify chx's patch/change because it did not work with PHP5. Please double-check. --- modules/node/node.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/node/node.module') diff --git a/modules/node/node.module b/modules/node/node.module index fed38070a..2962f3788 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1725,7 +1725,7 @@ function node_access($op, $node = NULL, $uid = NULL) { * An SQL join clause. */ function node_access_join_sql($node_alias = 'n', $node_access_alias = 'na') { - if (empty(module_implements('node_grants')) || user_access('administer nodes')) { + if (!module_implements('node_grants') || user_access('administer nodes')) { return ''; } @@ -1746,7 +1746,7 @@ function node_access_join_sql($node_alias = 'n', $node_access_alias = 'na') { * An SQL where clause. */ function node_access_where_sql($op = 'view', $node_access_alias = 'na', $uid = NULL) { - if (empty(module_implements('node_grants')) || user_access('administer nodes')) { + if (!module_implements('node_grants') || user_access('administer nodes')) { // This number is being used in a SQL query as a boolean. // It is "'1'" instead of "1" for database compatibility, as both // PostgreSQL and MySQL treat it as boolean in this case. -- cgit v1.2.3