--- date_token.inc	2009-01-06 23:48:32.000000000 +0100
+++ date_token.inc.mod	2009-03-13 16:30:02.000000000 +0100
@@ -1,5 +1,5 @@
 <?php
-//$Id: date_token.inc,v 1.2.2.1.2.5 2009/01/06 22:48:31 karens Exp $
+//$Id: date_token.inc 6 2009-03-09 15:00:16Z Christian $
 /**
  * @file
  * Token module integration.
@@ -24,7 +24,8 @@ function date_token_list($type = 'all') 
     $tokens['date']['ddd']            = t("Date day (abbreviation)");
     $tokens['date']['dd']             = t("Date day (two digit, zero-padded)");
     $tokens['date']['d']              = t("Date day (one or two digit)");
-
+    $tokens['date']['time']           = t("Time H:i");
+        
     $tokens['date']['to-????']        = t("If the field has a to-date defined, the same tokens exist in the form: [to-????], where ???? is the normal token.");
 
     return $tokens;
@@ -58,6 +59,7 @@ function date_token_values($type, $objec
     $tokens['ddd']            = date_format_date($date, 'custom', 'D');
     $tokens['dd']             = date_format_date($date, 'custom', 'd');
     $tokens['d']              = date_format_date($date, 'custom', 'j');
+    $tokens['time']           = date_format_date($date, 'custom', 'H:i');
 
     if (!empty($item['value2'])) {
 
@@ -82,6 +84,7 @@ function date_token_values($type, $objec
       $tokens['to-ddd']            = date_format_date($date, 'custom', 'D');
       $tokens['to-dd']             = date_format_date($date, 'custom', 'd');
       $tokens['to-d']              = date_format_date($date, 'custom', 'j');
+      $tokens['to-time']           = date_format_date($date, 'custom', 'H:i');
     }
     return $tokens;
   }
