diff modules/openid/openid.install @ 19:3edae6ecd6c6 6.9

Drupal 6.9
author Franck Deroche <franck@defr.org>
date Thu, 15 Jan 2009 10:15:56 +0100
parents c1f4ac30525a
children
line wrap: on
line diff
--- a/modules/openid/openid.install	Tue Dec 23 14:32:55 2008 +0100
+++ b/modules/openid/openid.install	Thu Jan 15 10:15:56 2009 +0100
@@ -1,5 +1,5 @@
 <?php
-// $Id: openid.install,v 1.3 2007/10/10 11:39:33 goba Exp $
+// $Id: openid.install,v 1.3.2.1 2009/01/06 15:46:37 goba Exp $
 
 /**
  * Implementation of hook_install().
@@ -22,45 +22,45 @@
  */
 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'),