- Patch #131538 by Jo Wouters: E_ALL fixes

6.x
Dries Buytaert 2007-05-08 17:08:14 +00:00
parent a309ea2be2
commit d7681a355f
1 changed files with 6 additions and 0 deletions

View File

@ -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;
}