--- feeds_social.defaults.inc	2010-08-02 19:38:14.000000000 +0200
+++ feeds_social.defaults.fix.inc	2010-11-10 19:28:36.000000000 +0100
@@ -99,80 +99,78 @@ function _feeds_social_feeds_importer_de
     'expire_period' => 3600,
     'import_on_create' => 1,
   );
-
-  $export['feed'] = $feeds_importer;
   
+  $export['feed_twitter'] = $feeds_importer;
   
-$feeds_importer = new stdClass;
-$feeds_importer->disabled = FALSE; /* Edit this to true to make a default feeds_importer disabled initially */
-$feeds_importer->api_version = 1;
-$feeds_importer->id = 'facebook';
-$feeds_importer->config = array(
-  'name' => 'Facebook',
-  'description' => 'Imports Facebook Links from RSS, create nodes from feed items.',
-  'fetcher' => array(
-    'plugin_key' => 'FeedsHTTPFetcher',
-    'config' => array(
-      'auto_detect_feeds' => FALSE,
-      'use_pubsubhubbub' => FALSE,
-      'designated_hub' => '',
+  // Facebook Importer
+  $feeds_importer = new stdClass;
+  $feeds_importer->disabled = FALSE; /* Edit this to true to make a default feeds_importer disabled initially */
+  $feeds_importer->api_version = 1;
+  $feeds_importer->id = 'feed_facebook';
+  $feeds_importer->config = array(
+    'name' => 'Facebook',
+    'description' => 'Imports Facebook Links from RSS, create nodes from feed items.',
+    'fetcher' => array(
+      'plugin_key' => 'FeedsHTTPFetcher',
+      'config' => array(
+        'auto_detect_feeds' => FALSE,
+        'use_pubsubhubbub' => FALSE,
+        'designated_hub' => '',
+      ),
     ),
-  ),
-  'parser' => array(
-    'plugin_key' => 'FeedsFacebookParser',
-    'config' => array(),
-  ),
-  'processor' => array(
-    'plugin_key' => 'FeedsNodeProcessor',
-    'config' => array(
-      'content_type' => 'feed_item_facebook',
-      'update_existing' => 1,
-      'expire' => '604800',
-      'mappings' => array(
-        '0' => array(
-          'source' => 'guid',
-          'target' => 'guid',
-          'unique' => 1,
-        ),
-        '1' => array(
-          'source' => 'published',
-          'target' => 'created',
-          'unique' => FALSE,
-        ),
-        '2' => array(
-          'source' => 'title',
-          'target' => 'title',
-          'unique' => FALSE,
-        ),
-        '3' => array(
-          'source' => 'body',
-          'target' => 'body',
-          'unique' => FALSE,
-        ),
-        '4' => array(
-          'source' => 'url',
-          'target' => 'field_facebook_link',
-          'unique' => FALSE,
-        ),
-        '5' => array(
-          'source' => 'author',
-          'target' => 'field_facebook_author',
-          'unique' => FALSE,
+    'parser' => array(
+      'plugin_key' => 'FeedsFacebookParser',
+      'config' => array(),
+    ),
+    'processor' => array(
+      'plugin_key' => 'FeedsNodeProcessor',
+      'config' => array(
+        'content_type' => 'feed_item_facebook',
+        'update_existing' => 1,
+        'expire' => '604800',
+        'mappings' => array(
+          '0' => array(
+            'source' => 'guid',
+            'target' => 'guid',
+            'unique' => 1,
+          ),
+          '1' => array(
+            'source' => 'published',
+            'target' => 'created',
+            'unique' => FALSE,
+          ),
+          '2' => array(
+            'source' => 'title',
+            'target' => 'title',
+            'unique' => FALSE,
+          ),
+          '3' => array(
+            'source' => 'body',
+            'target' => 'body',
+            'unique' => FALSE,
+          ),
+          '4' => array(
+            'source' => 'url',
+            'target' => 'field_facebook_link',
+            'unique' => FALSE,
+          ),
+          '5' => array(
+            'source' => 'author',
+            'target' => 'field_facebook_author',
+            'unique' => FALSE,
+          ),
         ),
+        'author' => 0,
       ),
-      'author' => 0,
     ),
-  ),
-  'content_type' => 'feed_facebook',
-  'update' => 0,
-  'import_period' => '1800',
-  'expire_period' => 3600,
-  'import_on_create' => 1,
-);
-  
-
-$export['feed2'] = $feeds_importer;
+    'content_type' => 'feed_facebook',
+    'update' => 0,
+    'import_period' => '1800',
+    'expire_period' => 3600,
+    'import_on_create' => 1,
+  );
   
+  $export['feed_facebook'] = $feeds_importer;
   
   return $export;
 }
