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/blogapi | |
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/blogapi')
-rw-r--r-- | modules/blogapi/blogapi.install | 10 |
1 files changed, 5 insertions, 5 deletions
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, |