]> git.donarmstrong.com Git - debbugs.git/commitdiff
[project @ 2002-11-25 13:53:44 by cjwatson]
authorcjwatson <>
Mon, 25 Nov 2002 21:53:44 +0000 (13:53 -0800)
committercjwatson <>
Mon, 25 Nov 2002 21:53:44 +0000 (13:53 -0800)
Add missing <ul></ul> tags to db2html's output (#50746).

debian/changelog
scripts/db2html.in

index 958a2243cc4012d9fc966b2661caa8153fe710b0..49b5bbb9bf3ada94734585958b638c3d04591671 100644 (file)
@@ -6,6 +6,7 @@ debbugs (2.4.1) UNRELEASED; urgency=low
     [Colin]
   * Add a man page for debbugsconfig. [Colin]
   * Report original tags when changing them, closes: #170630. [Colin]
+  * Add missing <ul></ul> tags to db2html's output, closes: #50746. [Colin]
 
  -- Colin Watson <cjwatson@debian.org>  Mon, 25 Nov 2002 03:50:20 +0000
 
index 7b50c2b5b1174aee8668b62b2ef08eafaf6655fd..388c8ac1ec4c3a009243dcf21e4db710d0805f28 100755 (executable)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl
-# $Id: db2html.in,v 1.11 2002/11/17 22:45:16 cjwatson Exp $
+# $Id: db2html.in,v 1.12 2002/11/25 13:53:44 cjwatson Exp $
 # usage: db2html [-diff] [-stampfile=<stampfile>] [-lastrun=<days>] <wwwbase>
 
 #load the necessary libraries/configuration
@@ -466,9 +466,9 @@ for $pending (qw(pending forwarded done)) {
               "</head>$gHTMLStart<h1>$who_html $gBug reports: $headstring</h1>\n".
               $otherindex_html.
               ($pending eq 'done' ? "<P>\n$expirynote_html" : '').
-              "<hr>\n".
+              "<hr>\n<ul>\n".
               $$value.
-              "<hr>\n".
+              "</ul>\n<hr>\n".
               $tail_html."</body></html>\n");
     }
 }