? i18n-ascii.txt
? only_bulk_delete_enabled_221189.patch
Index: pathauto.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pathauto/pathauto.module,v
retrieving revision 1.44.4.76
diff -u -p -r1.44.4.76 pathauto.module
--- pathauto.module	13 Feb 2008 12:45:11 -0000	1.44.4.76
+++ pathauto.module	13 Feb 2008 12:50:49 -0000
@@ -550,7 +550,19 @@ function pathauto_admin_delete_submit($f
 }
 
 function pathauto_path_alias_types() {
-  return array('user/' => t('users'), 'node/' => t('content') , 'taxonomy/' => t('vocabularies and terms'), 'blog/' => t('user blogs'), 'user/%/track' => t('user trackers'));
+  $objects = array('user/' => t('users'), 'node/' => t('content'));
+  if (module_exists('blogs')) {
+    $objects['blog/'] = t('user blogs');
+  }
+  if (module_exists('taxonomy')) {
+    $objects['taxonomy/'] = t('vocabularies and terms');
+  }
+  if (module_exists('taxonomy')) {
+    $objects['user/%/track'] = t('user trackers');
+  }
+
+
+  return $objects;
 }
 
 //==============================================================================
