diff --git faq.module faq.module
index b1d309e..ce36226 100644
--- faq.module
+++ faq.module
@@ -1469,19 +1469,11 @@ function faq_pathauto($op) {
     case 'settings':
       $settings = array();
       $settings['module'] = 'faq';
-      $settings['token_type'] = 'taxonomy';
       $settings['groupheader'] = t('FAQ category path settings');
       $settings['patterndescr'] = t('Default path pattern (applies to all FAQ categories with blank patterns below)');
-      $settings['patterndefault'] = t('faq/[catpath-raw]');
+      $settings['patterndefault'] = t('faq/[term:vocabulary]');
+      $settings['token_type'] = 'term';
 
-      $patterns = token_get_list('taxonomy');
-      foreach ($patterns as $type => $pattern_set) {
-        if ($type != 'global') {
-          foreach ($pattern_set as $pattern => $description) {
-            $settings['placeholders']['[' . $pattern . ']'] = $description;
-          }
-        }
-      }
       return (object) $settings;
     default:
       break;
