diff options
Diffstat (limited to 'modules/book/book.install')
-rw-r--r-- | modules/book/book.install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/book/book.install b/modules/book/book.install index 72a9df86c..155261dd0 100644 --- a/modules/book/book.install +++ b/modules/book/book.install @@ -162,7 +162,7 @@ function book_update_6000() { // The first orphan becomes the parent for all other orphans. $book['parent'] = 0; $_SESSION['book_update_6000_orphans']['book'] = $book; - $ret[] = array('success' => TRUE, 'query' => t('Relocated orphan book pages.')); + $ret[] = array('success' => TRUE, 'query' => 'Relocated orphan book pages.'); } else { // Re-assign the parent value of the book, and add it to the stack. @@ -237,7 +237,7 @@ function book_update_6000() { if (empty($_SESSION['book_update_6000'])) { $ret['#finished'] = TRUE; - $ret[] = array('success' => TRUE, 'query' => t('Relocated existing book pages.')); + $ret[] = array('success' => TRUE, 'query' => 'Relocated existing book pages.'); $ret[] = update_sql("DROP TABLE {book_temp}"); unset($_SESSION['book_update_6000']); unset($_SESSION['book_update_6000_orphans']); |