From 15671f471b5097fd20c5951a9c835de9bb05fc5b Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 15 Nov 2008 13:01:11 +0000 Subject: - Patch #332123 by webchick, lilou: remove t() function from schema descriptions. --- modules/forum/forum.install | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules/forum') diff --git a/modules/forum/forum.install b/modules/forum/forum.install index d35dd91e6..a7a6e99f8 100644 --- a/modules/forum/forum.install +++ b/modules/forum/forum.install @@ -66,28 +66,28 @@ function forum_uninstall() { */ function forum_schema() { $schema['forum'] = array( - 'description' => t('Stores the relationship of nodes to forum terms.'), + 'description' => 'Stores the relationship of nodes to forum terms.', 'fields' => array( 'nid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('The {node}.nid of the node.'), + 'description' => 'The {node}.nid of the node.', ), 'vid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('Primary Key: The {node}.vid of the node.'), + 'description' => 'Primary Key: The {node}.vid of the node.', ), 'tid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('The {term_data}.tid of the forum term assigned to the node.'), + 'description' => 'The {term_data}.tid of the forum term assigned to the node.', ), ), 'indexes' => array( -- cgit v1.2.3