diff options
author | jake%bugzilla.org <> | 2002-12-01 12:59:31 +0100 |
---|---|---|
committer | jake%bugzilla.org <> | 2002-12-01 12:59:31 +0100 |
commit | e343291a519ca636e5b2efc722173ffd82df38d1 (patch) | |
tree | ea3251509cef462e589afd7e1f495d7f02a055f8 | |
parent | 41ea14c4b1aec8fa78251cef46d89e37103ea643 (diff) | |
download | bugzilla-e343291a519ca636e5b2efc722173ffd82df38d1.tar.gz bugzilla-e343291a519ca636e5b2efc722173ffd82df38d1.tar.xz |
Bug 178880 - Creation date is now displayed in the long list.
Patch by Frank Wein <mcsmurf@gmx.net>
r=jake
a=justdave
-rwxr-xr-x | long_list.cgi | 5 | ||||
-rw-r--r-- | 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 @@ -160,6 +160,12 @@ <tr> <td colspan="4"> + <b>Opened:</b> + [% bug.creation_ts FILTER time %] + </td> + </tr> + <tr> + <td colspan="4"> <b>Description:</b> </td> </tr> |