Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
e343291a
Commit
e343291a
authored
Dec 01, 2002
by
jake%bugzilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 178880 - Creation date is now displayed in the long list.
Patch by Frank Wein <mcsmurf@gmx.net> r=jake a=justdave
parent
41ea14c4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
long_list.cgi
long_list.cgi
+3
-2
show-multiple.html.tmpl
template/en/default/bug/show-multiple.html.tmpl
+6
-0
No files found.
long_list.cgi
View file @
e343291a
...
@@ -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
;
}
}
...
...
template/en/default/bug/show-multiple.html.tmpl
View file @
e343291a
...
@@ -160,6 +160,12 @@
...
@@ -160,6 +160,12 @@
<tr>
<tr>
<td colspan="4">
<td colspan="4">
<b>Opened:</b>
[% bug.creation_ts FILTER time %]
</td>
</tr>
<tr>
<td colspan="4">
<b>Description:</b>
<b>Description:</b>
</td>
</td>
</tr>
</tr>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment