diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-11-15 13:01:11 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-11-15 13:01:11 +0000 |
commit | 15671f471b5097fd20c5951a9c835de9bb05fc5b (patch) | |
tree | b3b22b4f670da5c6880cadb593eae285bf623995 /modules/forum/forum.install | |
parent | 97fdc491917f6f12d734cb13bf2101cfc12096fd (diff) | |
download | brdo-15671f471b5097fd20c5951a9c835de9bb05fc5b.tar.gz brdo-15671f471b5097fd20c5951a9c835de9bb05fc5b.tar.bz2 |
- Patch #332123 by webchick, lilou: remove t() function from schema descriptions.
Diffstat (limited to 'modules/forum/forum.install')
-rw-r--r-- | modules/forum/forum.install | 8 |
1 files changed, 4 insertions, 4 deletions
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( |