diff options
Diffstat (limited to 'modules/book.module')
-rw-r--r-- | modules/book.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/book.module b/modules/book.module index 03b21edb5..a2ce00b51 100644 --- a/modules/book.module +++ b/modules/book.module @@ -240,17 +240,17 @@ function book_node_link($node = 0) { if ($op == t('Add to book outline')) { db_query('INSERT INTO {book} (nid, parent, weight) VALUES (%d, %d, %d)', $node->nid, $edit['parent'], $edit['weight']); - drupal_set_message(t('added the node to the book.')); + drupal_set_message(t('Added the node to the book.')); } if ($op == t('Update book outline')) { db_query('UPDATE {book} SET parent = %d, weight = %d WHERE nid = %d', $edit['parent'], $edit['weight'], $node->nid); - drupal_set_message(t('updated the book outline.')); + drupal_set_message(t('Updated the book outline.')); } if ($op == t('Remove from book outline')) { db_query('DELETE FROM {book} WHERE nid = %d', $node->nid); - drupal_set_message(t('removed the node form the book.')); + drupal_set_message(t('Removed the node form the book.')); } $output .= '<h3>'. t('Edit book outline for node "%booktitle"', array('%booktitle' => '<em>'. $node->title .'</em>')) .'</h3>'; |