]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix for bug 71607: remove "month-day only" date format from bug list views.
authorjustdave%syndicomm.com <>
Sat, 7 Apr 2001 10:30:59 +0000 (10:30 +0000)
committerjustdave%syndicomm.com <>
Sat, 7 Apr 2001 10:30:59 +0000 (10:30 +0000)
Patch by Stephan Niemz <st.n@gmx.net>
r= justdave

buglist.cgi

index 9818bfe78601f6a504fb30e8a7049ab360832ddc..63296a9145394f6704f5825833787f10409c4fe6 100755 (executable)
@@ -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;
                    }