Index: auto_nodetitle.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/auto_nodetitle/Attic/auto_nodetitle.module,v
retrieving revision 1.20.2.6
diff -u -r1.20.2.6 auto_nodetitle.module
--- auto_nodetitle.module	12 Jan 2010 12:39:32 -0000	1.20.2.6
+++ auto_nodetitle.module	17 Apr 2010 23:29:41 -0000
@@ -246,3 +246,14 @@
       break;
   }
 }
+
+/**
+ * Implementation of hook_features_populate_COMPONENT_alter().
+ */
+function auto_nodetitle_features_populate_node_alter(&$pipe, $data, $export, $module_name) {
+  foreach ($data as $type) {
+    $pipe['variable'][] = 'ant_' . $type;
+    $pipe['variable'][] = 'ant_pattern_' . $type;
+    $pipe['variable'][] = 'ant_php_' . $type;
+  }
+}
\ No newline at end of file
