Commit e343291a authored by jake%bugzilla.org's avatar jake%bugzilla.org

Bug 178880 - Creation date is now displayed in the long list.

Patch by Frank Wein <mcsmurf@gmx.net> r=jake a=justdave
parent 41ea14c4
...@@ -58,7 +58,8 @@ my $generic_query = " ...@@ -58,7 +58,8 @@ my $generic_query = "
bugs.status_whiteboard, bugs.status_whiteboard,
bugs.keywords, bugs.keywords,
bugs.estimated_time, 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 FROM bugs,profiles assign,profiles report, products, components
WHERE assign.userid = bugs.assigned_to AND report.userid = bugs.reporter WHERE assign.userid = bugs.assigned_to AND report.userid = bugs.reporter
AND bugs.product_id=products.id AND bugs.component_id=components.id"; AND bugs.product_id=products.id AND bugs.component_id=components.id";
...@@ -82,7 +83,7 @@ foreach my $bug_id (split(/[:,]/, $buglist)) { ...@@ -82,7 +83,7 @@ foreach my $bug_id (split(/[:,]/, $buglist)) {
"bug_severity", "component", "assigned_to", "reporter", "bug_severity", "component", "assigned_to", "reporter",
"bug_file_loc", "short_desc", "target_milestone", "bug_file_loc", "short_desc", "target_milestone",
"qa_contact", "status_whiteboard", "keywords", "qa_contact", "status_whiteboard", "keywords",
"estimated_time", "remaining_time") "estimated_time", "remaining_time", "creation_ts")
{ {
$bug{$field} = shift @row; $bug{$field} = shift @row;
} }
......
...@@ -160,6 +160,12 @@ ...@@ -160,6 +160,12 @@
<tr> <tr>
<td colspan="4"> <td colspan="4">
<b>Opened:</b>&nbsp;
[% bug.creation_ts FILTER time %]
</td>
</tr>
<tr>
<td colspan="4">
<b>Description:</b> <b>Description:</b>
</td> </td>
</tr> </tr>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment