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 = "
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;
}
......
......@@ -160,6 +160,12 @@
<tr>
<td colspan="4">
<b>Opened:</b>&nbsp;
[% bug.creation_ts FILTER time %]
</td>
</tr>
<tr>
<td colspan="4">
<b>Description:</b>
</td>
</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