Index: pathauto.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto.module,v retrieving revision 1.126.2.21 diff -u -r1.126.2.21 pathauto.module --- pathauto.module 16 Mar 2010 06:34:34 -0000 1.126.2.21 +++ pathauto.module 17 Apr 2010 23:43:29 -0000 @@ -504,3 +504,12 @@ drupal_set_message(format_plural(count($uids), 'Updated URL alias for 1 user account.', 'Updated URL aliases for @count user accounts.')); } } + +/** + * Implementation of hook_features_populate_COMPONENT_alter(). + */ +function pathauto_features_populate_node_alter(&$pipe, $data, $export, $module_name) { + foreach ($data as $type) { + $pipe['variable'][] = 'pathauto_node_' . $type . '_pattern'; + } +} \ No newline at end of file