Index: og.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/og/og.module,v retrieving revision 1.321 diff -u -p -r1.321 og.module --- og.module 6 Jan 2007 04:16:56 -0000 1.321 +++ og.module 7 Jan 2007 01:30:53 -0000 @@ -1938,11 +1938,6 @@ function og_node_access_records($node) { $grants[] = array('realm' => 'og_public', 'gid' => 0, 'grant_view' => 1, 'grant_update' => 0, 'grant_delete' => 0); } - // propose a deny for non public nodes whose type matters to og and aren't in a group - if (!count($grants)) { - $grants[] = array('priority' => 10, 'realm' => 'og_public', 'gid' => 0, 'grant_view' => 0, 'grant_update' => 0, 'grant_delete' => 0); - } - return $grants; }