From: Don Armstrong <don@donarmstrong.com> Date: Fri, 20 Sep 2013 16:56:20 +0000 (-0700) Subject: add missing <li>to bugs X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=52fc7a64ae948c7064b3d7c7d2989935ed215842;p=debbugs.git add missing <li>to bugs --- diff --git a/Debbugs/CGI/Pkgreport.pm b/Debbugs/CGI/Pkgreport.pm index 294b7386..f333d9ae 100644 --- a/Debbugs/CGI/Pkgreport.pm +++ b/Debbugs/CGI/Pkgreport.pm @@ -465,7 +465,7 @@ sub pkg_htmlizebugs { } $result .= "<div class=\"msgreceived\">\n<UL class=\"bugs\">\n"; $result .= "\n\n\n\n"; - $result .= join("",@{$section{$order}||[]}); + $result .= join("",map {"<li>".$_} @{$section{$order}||[]}); $result .= "\n\n\n\n"; $result .= "</UL>\n</div>\n"; }