From 619334db674a94dae590414f89c0e5fa8b9acc23 Mon Sep 17 00:00:00 2001 From: Loic d'Anterroches Date: Sat, 15 Nov 2008 12:26:21 +0100 Subject: [PATCH] Fixed the date to be the one of the comment and not the issue. --- src/IDF/IssueComment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IDF/IssueComment.php b/src/IDF/IssueComment.php index 72090c9..7de1ffd 100644 --- a/src/IDF/IssueComment.php +++ b/src/IDF/IssueComment.php @@ -128,7 +128,7 @@ class IDF_IssueComment extends Pluf_Model $issue->id)); $url .= '#ic'.$this->id; $out = "\n".''. - Pluf_esc(Pluf_Template_dateAgo($issue->creation_dtime, 'without')). + Pluf_esc(Pluf_Template_dateAgo($this->creation_dtime, 'without')). ''; $submitter = $issue->get_submitter(); $ic = (in_array($issue->status, $request->project->getTagIdsByStatus('closed'))) ? 'issue-c' : 'issue-o';