From 0e8530e42b69c909ef2c26468b24dfb88cc0997f Mon Sep 17 00:00:00 2001 From: albert-github Date: Fri, 25 Aug 2017 12:14:29 +0200 Subject: Bug 776870 - XML Parsing Error for operator<< methods when outputing to XHTML The < sign in the title has to be escaped, especially in case of xhtml. --- src/htmlgen.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index 0cb7ab9..9eee19c 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -1589,8 +1589,8 @@ void HtmlGenerator::startMemberDoc( const char *clName, const char *memName, { DBG_HTML(t << "" << endl;) t << "\n

" - << "◆ " - << title; + << "◆ "; + docify(title); if (memTotal>1) { t << " [" << memCount << "/" << memTotal <<"]"; -- cgit v0.12