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/openid/openid.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/openid/openid.install')
-rw-r--r-- | modules/openid/openid.install | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/modules/openid/openid.install b/modules/openid/openid.install index 572738a8a..9e482fc50 100644 --- a/modules/openid/openid.install +++ b/modules/openid/openid.install @@ -22,45 +22,45 @@ function openid_uninstall() { */ function openid_schema() { $schema['openid_association'] = array( - 'description' => t('Stores temporary shared key association information for OpenID authentication.'), + 'description' => 'Stores temporary shared key association information for OpenID authentication.', 'fields' => array( 'idp_endpoint_uri' => array( 'type' => 'varchar', 'length' => 255, - 'description' => t('URI of the OpenID Provider endpoint.'), + 'description' => 'URI of the OpenID Provider endpoint.', ), 'assoc_handle' => array( 'type' => 'varchar', 'length' => 255, 'not null' => TRUE, - 'description' => t('Primary Key: Used to refer to this association in subsequent messages.'), + 'description' => 'Primary Key: Used to refer to this association in subsequent messages.', ), 'assoc_type' => array( 'type' => 'varchar', 'length' => 32, - 'description' => t('The signature algorithm used: one of HMAC-SHA1 or HMAC-SHA256.'), + 'description' => 'The signature algorithm used: one of HMAC-SHA1 or HMAC-SHA256.', ), 'session_type' => array( 'type' => 'varchar', 'length' => 32, - 'description' => t('Valid association session types: "no-encryption", "DH-SHA1", and "DH-SHA256".'), + 'description' => 'Valid association session types: "no-encryption", "DH-SHA1", and "DH-SHA256".', ), 'mac_key' => array( 'type' => 'varchar', 'length' => 255, - 'description' => t('The MAC key (shared secret) for this association.'), + 'description' => 'The MAC key (shared secret) for this association.', ), 'created' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('UNIX timestamp for when the association was created.'), + 'description' => 'UNIX timestamp for when the association was created.', ), 'expires_in' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('The lifetime, in seconds, of this association.'), + 'description' => 'The lifetime, in seconds, of this association.', ), ), 'primary key' => array('assoc_handle'), |