diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-11-12 20:15:08 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-11-12 20:15:08 +0000 |
commit | 6642f2987e1b176465e82ce1623327471c2c99a2 (patch) | |
tree | 82360ed9f7cb9eb95891c819473b400cb471fab8 /modules/forum/forum.module | |
parent | 1291d8dcb406442972c543502377779f2c8fecc1 (diff) | |
download | brdo-6642f2987e1b176465e82ce1623327471c2c99a2.tar.gz brdo-6642f2987e1b176465e82ce1623327471c2c99a2.tar.bz2 |
- node modules:
+ made some improvements to the node access checks
- queue module:
+ form()-ified the queue module and added some extra information
or guidelines
+ added a few missing translations
+ ...
Diffstat (limited to 'modules/forum/forum.module')
-rw-r--r-- | modules/forum/forum.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module index 354b5ad37..3721658ec 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -10,7 +10,7 @@ function forum_node($field) { function forum_access($op, $node) { if ($op == "view") { - return ($node->nid && $node->status && !$node->moderate); + return $node->status; } } |