summaryrefslogtreecommitdiffstats
path: root/buglist.cgi
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2001-04-07 12:30:59 +0200
committerjustdave%syndicomm.com <>2001-04-07 12:30:59 +0200
commitd8a6bd5269a854434f72a3a497eceaf4198a1c1c (patch)
tree82a4d23cd49aa3bbcc22952cc9b1473af8ea41d3 /buglist.cgi
parent6ed055cfc3fb1f7821fdfbccbda100a489f57ffa (diff)
downloadbugzilla-d8a6bd5269a854434f72a3a497eceaf4198a1c1c.tar.gz
bugzilla-d8a6bd5269a854434f72a3a497eceaf4198a1c1c.tar.xz
Fix for bug 71607: remove "month-day only" date format from bug list views.
Patch by Stephan Niemz <st.n@gmx.net> r= justdave
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-xbuglist.cgi3
1 files changed, 1 insertions, 2 deletions
diff --git a/buglist.cgi b/buglist.cgi
index 9818bfe78..63296a914 100755
--- a/buglist.cgi
+++ b/buglist.cgi
@@ -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;
}