From: justdave%syndicomm.com <> Date: Sat, 7 Apr 2001 10:30:59 +0000 (+0000) Subject: Fix for bug 71607: remove "month-day only" date format from bug list views. X-Git-Tag: bugzilla-2.12~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8a6bd5269a854434f72a3a497eceaf4198a1c1c;p=thirdparty%2Fbugzilla.git Fix for bug 71607: remove "month-day only" date format from bug list views. Patch by Stephan Niemz r= justdave --- diff --git a/buglist.cgi b/buglist.cgi index 9818bfe786..63296a9145 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -20,6 +20,7 @@ # # Contributor(s): Terry Weissman # Dan Mosedale +# Stephan Niemz 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; }