Commit cfde6cdd authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 728740 - XML Output: Doxygen doesn’t escape & characters (included in a...

Bug 728740 - XML Output: Doxygen doesn’t escape & characters (included in a hyperlink) in <detaileddescription>
parent a36ddbe0
......@@ -651,7 +651,9 @@ void XmlDocVisitor::visitPost(DocInternal *)
void XmlDocVisitor::visitPre(DocHRef *href)
{
if (m_hide) return;
m_t << "<ulink url=\"" << href->url() << "\">";
m_t << "<ulink url=\"";
filter(href->url());
m_t << "\">";
}
void XmlDocVisitor::visitPost(DocHRef *)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment