--- token.module.orig	2008-07-14 15:15:10.000000000 -0400
+++ token.module	2008-11-23 20:50:56.000000000 -0500
@@ -85,6 +85,12 @@ function token_token_values($type, $obje
       $values['site-mission'] = filter_xss_admin(variable_get('site_mission', ''));
       $values['site-mail']    = variable_get('site_mail', '');
       $values['site-date']    = format_date(time(), 'short', '', variable_get('date_default_timezone', 0));
+
+      $values['arg0']         = arg(0);
+      $values['arg1']         = arg(1);
+      $values['arg2']         = arg(2);
+      $values['arg3']         = arg(3);
+
       break;
   }
   return $values;
@@ -114,6 +120,12 @@ function token_token_list($type = 'all')
   $tokens['global']['site-mission'] = t('The mission of the current Drupal website.');
   $tokens['global']['site-mail']    = t('The contact email address for the current Drupal website.');
   $tokens['global']['site-date']    = t("The current date on the site's server.");
+
+  $tokens['global']['arg0']         = t('Url argument 0');
+  $tokens['global']['arg1']         = t('Url argument 1');
+  $tokens['global']['arg2']         = t('Url argument 2');
+  $tokens['global']['arg3']         = t('Url argument 3');
+
   return $tokens;
 }
 
