diff options
Diffstat (limited to 'modules/book.module')
-rw-r--r-- | modules/book.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/book.module b/modules/book.module index 5d4c9d6f8..7618c24e5 100644 --- a/modules/book.module +++ b/modules/book.module @@ -255,7 +255,7 @@ function book_form(&$node) { $form['body'] = array( '#type' => 'textarea', '#title' => t('Body'), '#default_value' => $node->body, '#rows' => 20, '#required' => TRUE ); - $form = array_merge($form, filter_form($node->format)); + $form['format'] = filter_form($node->format); $form['log'] = array( '#type' => 'fieldset', '#title' => t('Log message'), '#collapsible' => TRUE, '#collapsed' => TRUE |