diff modules/book/book.install @ 19:3edae6ecd6c6 6.9

Drupal 6.9
author Franck Deroche <franck@defr.org>
date Thu, 15 Jan 2009 10:15:56 +0100
parents c1f4ac30525a
children
line wrap: on
line diff
--- a/modules/book/book.install	Tue Dec 23 14:32:55 2008 +0100
+++ b/modules/book/book.install	Thu Jan 15 10:15:56 2009 +0100
@@ -1,5 +1,5 @@
 <?php
-// $Id: book.install,v 1.20 2008/01/10 18:13:42 goba Exp $
+// $Id: book.install,v 1.20.2.1 2009/01/06 15:46:36 goba Exp $
 
 /**
  * Implementation of hook_install().
@@ -251,28 +251,28 @@
  */
 function book_schema() {
   $schema['book'] = array(
-  'description' => t('Stores book outline information. Uniquely connects each node in the outline to a link in {menu_links}'),
+  'description' => 'Stores book outline information. Uniquely connects each node in the outline to a link in {menu_links}',
     'fields' => array(
       'mlid' => array(
         'type' => 'int',
         'unsigned' => TRUE,
         'not null' => TRUE,
         'default' => 0,
-        'description' => t("The book page's {menu_links}.mlid."),
+        'description' => "The book page's {menu_links}.mlid.",
       ),
       'nid' => array(
         'type' => 'int',
         'unsigned' => TRUE,
         'not null' => TRUE,
         'default' => 0,
-        'description' => t("The book page's {node}.nid."),
+        'description' => "The book page's {node}.nid.",
       ),
       'bid' => array(
         'type' => 'int',
         'unsigned' => TRUE,
         'not null' => TRUE,
         'default' => 0,
-        'description' => t("The book ID is the {book}.nid of the top-level page."),
+        'description' => "The book ID is the {book}.nid of the top-level page.",
       ),
     ),
     'primary key' => array('mlid'),