'description' => t("Create a reminder for a business lunch, a meeting or a movie night."),
'has_title' => TRUE,
'title_label' => t('Your reminder'),
- 'has_body' => TRUE,
- 'body_label' => t('Add some description'),
)
);
}
if ($type->has_body) {
$form['body'] = array(
'#type' => 'textarea',
- '#title' => check_plain($type->body_label),
+ '#title' => t('Add some description'),
'#default_value' => isset($node->body) ? $node->body : '',
'#rows' => 5
);