Index: pift.pages.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project_issue_file_test/pift.pages.inc,v
retrieving revision 1.28
diff -u -r1.28 pift.pages.inc
--- pift.pages.inc	20 Nov 2009 22:33:00 -0000	1.28
+++ pift.pages.inc	5 Jan 2010 21:36:29 -0000
@@ -112,11 +112,14 @@
  * Re-queue test if it still meets are criteria.
  */
 function pift_pages_retest_confirm_form_submit($form, &$form_state) {
+  global $user;
+
   $test = $form_state['values']['test'];
 
   if ($test['status'] > PIFT_STATUS_SENT) {
     project_issue_add_auto_followup(array(
       'nid' => $test['nid'],
+      'uid' => $user->uid,
       'sid' => PIFT_FOLLOWUP_RETEST,
       'comment' => theme('pift_auto_followup', 'retest', $test['nid'], $test['cid'], $test['title']),
     ));
Index: pift.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project_issue_file_test/pift.module,v
retrieving revision 1.35
diff -u -r1.35 pift.module
--- pift.module	24 Dec 2009 23:07:21 -0000	1.35
+++ pift.module	5 Jan 2010 21:36:29 -0000
@@ -323,7 +323,6 @@
   global $user;
 
   $args = array(
-    '!user' => theme('username', $user),
     '@id' => "pift-results-$nid",
     '@filename' => $filename,
   );
@@ -331,11 +330,12 @@
   if ($cid) {
     $comment = _comment_load($cid);
     $args['@id'] .= "-$cid";
-    $args['@comment'] = $comment->title;
+    $args['@cid'] = $comment->cid;
+    $args['@comment'] = $comment->subject;
   }
 
   if ($type == 'retest') {
-    return t('Re-test of @filename from comment <a href="#@id">@comment</a> was requested by !user.', $args);
+    return t('<a href="#comment-@cid">@comment</a>: <a href="#@id">@filename</a> queued for re-testing.', $args);
   }
   elseif ($type == 'fail') {
     return t('The last submitted patch, <a href="#@id">@filename</a>, failed testing.', $args);
