diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-01-17 20:56:04 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-01-17 20:56:04 +0000 |
commit | ac7de32b3c0f87b4c21eb7b0977380bae532247b (patch) | |
tree | f27efd7bde1c87d7a3afb88b7ff740b4febdc310 /modules/node/node.module | |
parent | d1855fe18b784f4fcabdffd824c4ea836c059bcf (diff) | |
download | brdo-ac7de32b3c0f87b4c21eb7b0977380bae532247b.tar.gz brdo-ac7de32b3c0f87b4c21eb7b0977380bae532247b.tar.bz2 |
#320395 by qutoz and swentel: Fix PHP notice on preview with body-less nodes.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 298dd57a4..73afd403f 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -968,6 +968,7 @@ function node_submit($node) { } else { $node->teaser = ''; + $node->format = 0; } } |