From 1bb819f5b680d600f010761b21e44df2f5e35ccc Mon Sep 17 00:00:00 2001 From: albert-github Date: Sat, 7 Nov 2015 14:02:01 +0100 Subject: [PATCH] Bug 757621 - unclosed tag, c# generics method with where In the routine the
tag is used to do an indentation in the
section, this
was not closed in endConstraintList. Problem existed from the beginning (version Release-1.5.2-20070719, commit 29a8f14) --- src/htmlgen.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index 1b726618f9e..9e02dee126d 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -2420,6 +2420,7 @@ void HtmlGenerator::endConstraintDocs() void HtmlGenerator::endConstraintList() { t << "" << endl; + t << "
" << endl; t << "
" << endl; t << "" << endl; }