From 89fd73e0ca87af6414a0682f45152ecf30aaea2a Mon Sep 17 00:00:00 2001 From: Andrew Chilton Date: Wed, 25 Nov 2009 20:03:22 +1300 Subject: [PATCH] Fix showing the updated field (instead of inserted) --- lib/CIL/Utils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CIL/Utils.pm b/lib/CIL/Utils.pm index ad2344b..6758fff 100644 --- a/lib/CIL/Utils.pm +++ b/lib/CIL/Utils.pm @@ -375,7 +375,7 @@ sub display_issue_full { $class->field( 'Precedes', $_ ) foreach sort @{$issue->PrecedesList()}; $class->field( 'Inserted', $issue->Inserted() ); - $class->field( 'Updated', $issue->Inserted() ); + $class->field( 'Updated', $issue->Updated() ); $class->text('Description', $issue->Description()); my $comments = $cil->get_comments_for( $issue ); -- 2.39.5