--- content_taxonomy.token.inc	2010-03-11 09:30:52.103575004 +0200
+++ content_taxonomy.token.inc.new	2010-03-10 18:15:48.544821657 +0200
@@ -12,6 +12,8 @@
     $tokens['content_taxonomy']['tid']   = t('ID of top taxonomy term');
     $tokens['content_taxonomy']['terms']  = t('Names of all taxonomy terms separated by commas');
     $tokens['content_taxonomy']['terms-raw']  = t('Unfiltered names of all taxonomy terms separated by commas. WARNING - raw user input.');
+    $tokens['content_taxonomy']['terms_path']  = t('Names of all taxonomy terms separated by /');
+    $tokens['content_taxonomy']['terms_path-raw']  = t('Unfiltered names of all taxonomy terms separated by /. WARNING - raw user input.');
     $tokens['content_taxonomy']['tids']   = t('IDs of all taxonomy terms separated by commas');
     $tokens['content_taxonomy']['vocab'] = t('Name of terms vocabulary');
     $tokens['content_taxonomy']['vid']   = t('ID of terms vocabulary');
@@ -44,6 +46,8 @@
 
     $tokens['terms-raw'] = implode(', ', $terms);
     $tokens['terms'] = check_plain($tokens['terms-raw']);
+    $tokens['terms_path-raw'] = implode('/', array_reverse($terms));
+    $tokens['terms_path'] = check_plain($tokens['terms_path-raw']);
     $tokens['tids']  = implode(', ', $tids);
     $tokens['term-raw']  = $terms[0];
     $tokens['term']  = check_plain($tokens['term-raw']);
