Index: modules/book.module =================================================================== RCS file: /cvs/drupal/drupal/modules/book.module,v retrieving revision 1.293 diff -u -F^f -r1.293 book.module --- modules/book.module 24 Apr 2005 20:57:38 -0000 1.293 +++ modules/book.module 29 Apr 2005 04:23:53 -0000 @@ -46,6 +46,12 @@ function book_access($op, $node) { // do nothing. node-access() will determine further access } } + + if ($op == 'delete') { + if (user_access('maintain books') || ($node->uid == $user->uid && user_access('edit own book pages'))) { + return TRUE; + } + } } /**