]> git.donarmstrong.com Git - debbugs.git/blobdiff - cgi/bugreport.cgi
- Fix casing of versions (closes: #441022)
[debbugs.git] / cgi / bugreport.cgi
index b86a6883f72d9e8c7500e038ab18b1725fbb047a..7489f985674053461d5804a11d39dd913f7b4931 100755 (executable)
@@ -586,7 +586,15 @@ else {
 $log = join("\n",@log);
 
 
-print "Content-Type: text/html; charset=utf-8\n\n";
+print "Content-Type: text/html; charset=utf-8\n";
+
+my @stat = stat $buglog;
+if (@stat) {
+     my $mtime = strftime '%a, %d %b %Y %T GMT', gmtime($stat[9]);
+     print "Last-Modified: $mtime\n";
+}
+
+print "\n";
 
 my $title = html_escape($status{subject});