Index: cvs.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/cvslog/cvs.module,v
retrieving revision 1.132
diff -u -p -r1.132 cvs.module
--- cvs.module	22 Dec 2006 23:55:29 -0000	1.132
+++ cvs.module	25 Dec 2006 19:14:07 -0000
@@ -1127,9 +1127,8 @@ function theme_cvs_commit_message($commi
   $commit->message = preg_replace('/((?:(?:fix|add|patch)(?:ed)?\s+#?|#)(\d+))/ie', "strtr('<a href=\"$commit->trackerurl\">\\1</a>', array('%d' => '\\2'))", htmlspecialchars($commit->message));
   $commit->files = cvs_files($commit);
 
-  $output .= "<div class=\"title\">Commit ". 
-    l("#$commit->cid", "cvs", NULL, "commit=$commit->cid") .
-    t(' by !name', array('!name' => ($commit->uid ? theme('username', $commit) : $commit->user))) .
+  $output .= '<div class="title">'
+    . t('Commit !link by !name at @time', array('!link' => l("#$commit->cid", 'cvs', NULL, "commit=$commit->cid"), '!name' => ($commit->uid ? theme('username', $commit) : $commit->user), '@time' => format_date($commit->created, 'custom', 'H:i'))) .
     "</div>\n";
   $output .= "<div class=\"files\">$commit->files</div>\n";
   $output .= "<div class=\"description\"><pre>$commit->message</pre></div>\n";
