From d2103f411cc649d1cbe1ef841411c4af1f5718c0 Mon Sep 17 00:00:00 2001 From: "jake%bugzilla.org" Date: Sun, 1 Dec 2002 03:59:33 +0000 Subject: [PATCH] Bug 178880 - Creation date is now displayed in the long list. Patch by Frank Wein r=jake a=justdave --- webtools/bugzilla/long_list.cgi | 5 +++-- .../template/en/default/bug/show-multiple.html.tmpl | 6 ++++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/webtools/bugzilla/long_list.cgi b/webtools/bugzilla/long_list.cgi index 5047d271ea3..5bb19956c70 100755 --- a/webtools/bugzilla/long_list.cgi +++ b/webtools/bugzilla/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/webtools/bugzilla/template/en/default/bug/show-multiple.html.tmpl b/webtools/bugzilla/template/en/default/bug/show-multiple.html.tmpl index d7e2fcf09e4..a4f4bf9c73a 100644 --- a/webtools/bugzilla/template/en/default/bug/show-multiple.html.tmpl +++ b/webtools/bugzilla/template/en/default/bug/show-multiple.html.tmpl @@ -158,6 +158,12 @@ [% END %] + + + Opened:  + [% bug.creation_ts FILTER time %] + + Description: