Skip to content

Commit

Permalink
Bug 728740 - XML Output: Doxygen doesn’t escape & characters (include…
Browse files Browse the repository at this point in the history
…d in a hyperlink) in <detaileddescription>
  • Loading branch information
Dimitri van Heesch committed Aug 4, 2014
1 parent a36ddbe commit cfde6cd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/xmldocvisitor.cpp
Expand Up @@ -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 *)
Expand Down

0 comments on commit cfde6cd

Please sign in to comment.