Skip to content

Commit c80d0fe

Browse files
committed
issue doxygen#11740 Regression: Doxygen >= 1.11.0 no longer able to produce .chm files that link to each other using TAGFILES
Added `ms-its` protocol for HTMLHELP files
1 parent fdc8352 commit c80d0fe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/configimpl.l

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2006,7 +2006,8 @@ void Config::checkAndCorrect(bool quiet, const bool check)
20062006
if (eqPos!=std::string::npos) // tag command contains a destination
20072007
{
20082008
QCString url = QCString(s.substr(eqPos+1)).stripWhiteSpace().lower();
2009-
validUrl = url.startsWith("http:") || url.startsWith("https:");
2009+
validUrl = url.startsWith("http:") || url.startsWith("https:") ||
2010+
url.startsWith("ms-its:");
20102011
}
20112012
if (validUrl)
20122013
{

0 commit comments

Comments
 (0)