diff modules/menu/menu.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/menu/menu.install	Tue Dec 23 14:32:55 2008 +0100
+++ b/modules/menu/menu.install	Thu Jan 15 10:15:56 2009 +0100
@@ -1,5 +1,5 @@
 <?php
-// $Id: menu.install,v 1.9 2008/01/30 20:27:28 goba Exp $
+// $Id: menu.install,v 1.9.2.1 2009/01/06 15:46:37 goba Exp $
 
 /**
  * Implementation of hook_install().
@@ -28,26 +28,26 @@
  */
 function menu_schema() {
   $schema['menu_custom'] = array(
-    'description' => t('Holds definitions for top-level custom menus (for example, Primary Links).'),
+    'description' => 'Holds definitions for top-level custom menus (for example, Primary Links).',
     'fields' => array(
       'menu_name' => array(
         'type' => 'varchar',
         'length' => 32,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('Primary Key: Unique key for menu. This is used as a block delta so length is 32.'),
+        'description' => 'Primary Key: Unique key for menu. This is used as a block delta so length is 32.',
       ),
       'title' => array(
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('Menu title; displayed at top of block.'),
+        'description' => 'Menu title; displayed at top of block.',
       ),
       'description' => array(
         'type' => 'text',
         'not null' => FALSE,
-        'description' => t('Menu description.'),
+        'description' => 'Menu description.',
       ),
     ),
     'primary key' => array('menu_name'),