Index: modules/book/book.module =================================================================== RCS file: /cvs/drupal/drupal/modules/book/book.module,v retrieving revision 1.434 diff -u -r1.434 book.module --- modules/book/book.module 16 Aug 2007 12:47:34 -0000 1.434 +++ modules/book/book.module 18 Aug 2007 02:35:45 -0000 @@ -539,8 +539,16 @@ */ function book_remove_form(&$form_state, $node) { $form['#node'] = $node; + $title = array('%title' => $node->title); - return confirm_form($form, t('Are you sure you want to remove %title from the book hierarchy?', array('%title' => $node->title)), 'node/'. $node->nid, array('yes' => t('Remove'))); + if ($node->book['has_children']) { + $description = t('%title has associated child pages, which will be relocated automatically to maintain their connection to the book. To recreate the hierarchy (as it was before removing this page), %title may be added again using the Outline tab, and each of its former child pages will need to be relocated manually.', $title); + } + else { + $description = t('%title may be added to hierarchy again using the Outline tab.', $title); + } + + return confirm_form($form, t('Are you sure you want to remove %title from the book hierarchy?', $title), 'node/'. $node->nid, $description, t('Remove')); } /**