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/blogapi/blogapi.install | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'modules/blogapi') diff --git a/modules/blogapi/blogapi.install b/modules/blogapi/blogapi.install index 0bf00659c..a8bb46d9b 100644 --- a/modules/blogapi/blogapi.install +++ b/modules/blogapi/blogapi.install @@ -23,28 +23,28 @@ function blogapi_uninstall() { */ function blogapi_schema() { $schema['blogapi_files'] = array( - 'description' => t('Stores information for files uploaded via the blogapi.'), + 'description' => 'Stores information for files uploaded via the blogapi.', 'fields' => array( 'fid' => array( - 'description' => t('Primary Key: Unique file ID.'), + 'description' => 'Primary Key: Unique file ID.', 'type' => 'serial', ), 'uid' => array( - 'description' => t('The {users}.uid of the user who is associated with the file.'), + 'description' => 'The {users}.uid of the user who is associated with the file.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'filepath' => array( - 'description' => t('Path of the file relative to Drupal root.'), + 'description' => 'Path of the file relative to Drupal root.', 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '', ), 'filesize' => array( - 'description' => t('The size of the file in bytes.'), + 'description' => 'The size of the file in bytes.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, -- cgit v1.2.3