diff --git a/modules/node/node.module b/modules/node/node.module index 2fd272645a5..97e0d640931 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -449,6 +449,12 @@ function _node_type_set_defaults($info) { $info['body_label'] = t('Body'); } + if (!isset($info['help'])) { + $info['help'] = ''; + } + if (!isset($info['min_word_count'])) { + $info['min_word_count'] = 0; + } if (!isset($info['custom'])) { $info['custom'] = FALSE; }