diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-22 23:28:48 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-22 23:28:48 +0000 |
commit | 5f6d733b70cdc374053e1e415d225008e04bbef4 (patch) | |
tree | d220871eb4032ce56a15e745d94eb6fa62a081e5 /modules/blog.module | |
parent | d62d65ae7ec31ea8e4e3435f06015673e45e9e2b (diff) | |
download | brdo-5f6d733b70cdc374053e1e415d225008e04bbef4.tar.gz brdo-5f6d733b70cdc374053e1e415d225008e04bbef4.tar.bz2 |
- node security fixes.
- fixing the UI to represent what actually happens when you are an admin.
Diffstat (limited to 'modules/blog.module')
-rw-r--r-- | modules/blog.module | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/blog.module b/modules/blog.module index b41323538..2677f8e04 100644 --- a/modules/blog.module +++ b/modules/blog.module @@ -205,6 +205,12 @@ function blog_page_last() { function blog_form(&$node, &$help, &$error) { global $nid, $iid; + if (!$node->status) { + $node->status = 1; + $node->moderate = 1; + $node->comment = 2; + } + if (isset($node->body)) { /* |