builtin-commit: resurrect behavior for multiple -m options
[gitweb.git] / gitweb / gitweb.perl
index 3d532dc7d74e9883843448cc660b8198b9197acb..491a3f41d20deafa6513e7f574108022b762507b 100755 (executable)
@@ -3912,8 +3912,10 @@ sub git_summary {
 
        if (-s "$projectroot/$project/README.html") {
                if (open my $fd, "$projectroot/$project/README.html") {
-                       print "<div class=\"title\">readme</div>\n";
+                       print "<div class=\"title\">readme</div>\n" .
+                             "<div class=\"readme\">\n";
                        print $_ while (<$fd>);
+                       print "\n</div>\n"; # class="readme"
                        close $fd;
                }
        }