Index: book_made_simple.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/BookMadeSimple/book_made_simple.module,v
retrieving revision 1.1.2.1.2.5.2.3
diff -u -p -r1.1.2.1.2.5.2.3 book_made_simple.module
--- book_made_simple.module	20 Sep 2009 20:47:27 -0000	1.1.2.1.2.5.2.3
+++ book_made_simple.module	22 Sep 2009 09:29:45 -0000
@@ -40,7 +40,7 @@ function book_made_simple_menu() {
     'title' => t('Reorder the book'),
     'page callback' => 'book_made_simple_reorder',
     'page arguments' => array(1),
-    'access callback' => 'isBookAccess',
+    'access callback' => 'book_made_simple_is_book_access',
     'access arguments' => array(1),
     'type' => MENU_LOCAL_TASK,
     'weight' =>2
@@ -52,7 +52,7 @@ function book_made_simple_menu() {
 /**
  * Return access rights for book
  */
-function isBookAccess($arg, $node = NULL) {
+function book_made_simple_is_book_access($arg, $node = NULL) {
   if ($node == NULL && is_numeric($arg)) {
     $node = node_load($arg);
   }
@@ -174,7 +174,7 @@ function book_made_simple_form_alter(&$f
     $book = $node->book;
     if (user_access("show core Outline links")) {
       if (_book_outline_access($node)) {
-        if (isBookAccess(null, $node)) {
+        if (book_made_simple_is_book_access(null, $node)) {
           $form['book']['reorder'] = array(
             '#type' => 'item',
             '#value' => l(t("Reorder the book"), "admin/content/book/" . $book['bid'] , array('query' =>"destination=node/" . $node->nid)),
