diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/book/book.module | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/book/book.module b/modules/book/book.module index 003a0360d..f389b4f7e 100644 --- a/modules/book/book.module +++ b/modules/book/book.module @@ -460,10 +460,6 @@ function book_nodeapi(&$node, $op, $teaser, $page) { if (!$teaser) { $book = db_fetch_array(db_query('SELECT * FROM {book} WHERE vid = %d', $node->vid)); if ($book) { - if (user_access('administer nodes')) { - drupal_set_message(t("The post has been submitted for moderation and won't be accessible until it has been approved.")); - } - foreach ($book as $key => $value) { $node->$key = $value; } |