8000 Merge pull request #11404 from albert-github/feature/bug_ampersand_url · doxygen/doxygen@bc8099c · GitHub
[go: up one dir, main page]

Skip to content

Commit bc8099c

Browse files
authored
Merge pull request #11404 from albert-github/feature/bug_ampersand_url
Incorrect field when ampersand in URL
2 parents 1fc975e + 4c01d11 commit bc8099c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/htmldocvisitor.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,8 @@ void HtmlDocVisitor::operator()(const DocURL &u)
401401
else // web address
402402
{
403403
m_t << "<a href=\"";
404-
m_t << u.url() << "\">";
404+
filter(u.url());
405+
m_t << "\">";
405406
filter(u.url());
406407
m_t << "</a>";
407408
}

0 commit comments

Comments
 (0)
0