From e343291a519ca636e5b2efc722173ffd82df38d1 Mon Sep 17 00:00:00 2001 From: "jake%bugzilla.org" <> Date: Sun, 1 Dec 2002 11:59:31 +0000 Subject: Bug 178880 - Creation date is now displayed in the long list. Patch by Frank Wein r=jake a=justdave --- long_list.cgi | 5 +++-- template/en/default/bug/show-multiple.html.tmpl | 6 ++++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/long_list.cgi b/long_list.cgi index 5047d271e..5bb19956c 100755 --- a/long_list.cgi +++ b/long_list.cgi @@ -58,7 +58,8 @@ my $generic_query = " bugs.status_whiteboard, bugs.keywords, bugs.estimated_time, - bugs.remaining_time + bugs.remaining_time, + date_format(creation_ts,'%Y.%m.%d %H:%i') FROM bugs,profiles assign,profiles report, products, components WHERE assign.userid = bugs.assigned_to AND report.userid = bugs.reporter AND bugs.product_id=products.id AND bugs.component_id=components.id"; @@ -82,7 +83,7 @@ foreach my $bug_id (split(/[:,]/, $buglist)) { "bug_severity", "component", "assigned_to", "reporter", "bug_file_loc", "short_desc", "target_milestone", "qa_contact", "status_whiteboard", "keywords", - "estimated_time", "remaining_time") + "estimated_time", "remaining_time", "creation_ts") { $bug{$field} = shift @row; } diff --git a/template/en/default/bug/show-multiple.html.tmpl b/template/en/default/bug/show-multiple.html.tmpl index d7e2fcf09..a4f4bf9c7 100644 --- a/template/en/default/bug/show-multiple.html.tmpl +++ b/template/en/default/bug/show-multiple.html.tmpl @@ -158,6 +158,12 @@ [% END %] + + + Opened:  + [% bug.creation_ts FILTER time %] + + Description: -- cgit v1.2.3-24-g4f1b