Bug 178880 - Creation date is now displayed in the long list.
Patch by Frank Wein <mcsmurf@gmx.net> r=jake a=justdave
This commit is contained in:
Родитель
c5490fce2a
Коммит
d2103f411c
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -158,6 +158,12 @@
|
|||
</tr>
|
||||
[% END %]
|
||||
|
||||
<tr>
|
||||
<td colspan="4">
|
||||
<b>Opened:</b>
|
||||
[% bug.creation_ts FILTER time %]
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="4">
|
||||
<b>Description:</b>
|
||||
|
|
Загрузка…
Ссылка в новой задаче