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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
d8a6bd52
Commit
d8a6bd52
authored
Apr 07, 2001
by
justdave%syndicomm.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug 71607: remove "month-day only" date format from bug list views.
Patch by Stephan Niemz <st.n@gmx.net> r= justdave
parent
6ed055cf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
buglist.cgi
buglist.cgi
+1
-2
No files found.
buglist.cgi
View file @
d8a6bd52
...
...
@@ -20,6 +20,7 @@
#
# Contributor(s): Terry Weissman <terry@mozilla.org>
# Dan Mosedale <dmose@mozilla.org>
# Stephan Niemz <st.n@gmx.net>
use
diagnostics
;
use
strict
;
...
...
@@ -1207,8 +1208,6 @@ while (@row = FetchSQLData()) {
$value
=
sprintf
"%02d:%02d:%02d"
,
$h
,
$m
,
$s
;
}
elsif
(
$age
<
6
*
24
*
60
*
60
)
{
$value
=
sprintf
"%s %02d:%02d"
,
$weekday
[
$wd
],
$h
,
$m
;
}
elsif
(
$age
<
100
*
24
*
60
*
60
)
{
$value
=
sprintf
"%02d-%02d"
,
$mo
+
1
,
$d
;
}
else
{
$value
=
sprintf
"%04d-%02d-%02d"
,
1900
+
$y
,
$mo
+
1
,
$d
;
}
...
...
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