Index: flvmediaplayer.install =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/flvmediaplayer/flvmediaplayer.install,v retrieving revision 1.1.2.6.2.2.2.5 diff -u -p -r1.1.2.6.2.2.2.5 flvmediaplayer.install --- flvmediaplayer.install 19 Dec 2008 18:04:53 -0000 1.1.2.6.2.2.2.5 +++ flvmediaplayer.install 27 Mar 2009 09:29:20 -0000 @@ -8,15 +8,15 @@ function flvmediaplayer_schema() { $schema['flvmediaplayer_node'] = array( - 'description' => t('Stores node data'), + 'description' => 'Stores node data', 'fields' => array( 'nid' => array( - 'description' => t('Node Id'), + 'description' => 'Node Id', 'type' => 'int', 'not null' => FALSE, ), 'config' => array( - 'description' => t('Node configuration data'), + 'description' => 'Node configuration data', 'type' => 'text', 'size' => 'medium', 'not null' => FALSE, @@ -25,21 +25,21 @@ function flvmediaplayer_schema() { ); $schema['flvmediaplayer_profiles'] = array( - 'description' => t('Stores the profile data.'), + 'description' => 'Stores the profile data.', 'fields' => array( 'pid' => array('type' => 'serial'), 'type' => array( - 'description' => t('Description of the profile'), + 'description' => 'Description of the profile', 'type' => 'varchar', 'length' => 255, ), 'name' => array( - 'description' => t('Name of the profile'), + 'description' => 'Name of the profile', 'type' => 'varchar', 'length' => 255, ), 'config' => array( - 'description' => t('Configuration data'), + 'description' => 'Configuration data', 'type' => 'text', 'size' => 'medium', ), @@ -49,7 +49,7 @@ function flvmediaplayer_schema() { // cache schema $schema['cache_flvmediaplayer'] = drupal_get_schema_unprocessed('system', 'cache'); - $schema['cache_flvmediaplayer']['description'] = t('Cache table for the FLV Media PLayer module to store configuration and node data'); + $schema['cache_flvmediaplayer']['description'] = 'Cache table for the FLV Media PLayer module to store configuration and node data'; return $schema; } @@ -61,8 +61,6 @@ function flvmediaplayer_uninstall() { // Remove tables. drupal_uninstall_schema('flvmediaplayer'); - // Remove tables. - drupal_uninstall_schema('flvmediaplayer'); variable_del('flvmediaplayer_%'); variable_del('flvmp_%'); }