diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2018-07-24 12:32:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-24 12:32:29 (GMT) |
commit | 4b0c10984bad44a47ea48c04e19799246ef8ba5a (patch) | |
tree | 824cbd3367c15ce2415a7c41c1a9d9e16f768e32 /src | |
parent | 584624142576c762e60f80718aeff64bf5840d61 (diff) | |
parent | 30362ecc6da4123a9d87e9c74a6918aa23cc1403 (diff) | |
download | Doxygen-4b0c10984bad44a47ea48c04e19799246ef8ba5a.zip Doxygen-4b0c10984bad44a47ea48c04e19799246ef8ba5a.tar.gz Doxygen-4b0c10984bad44a47ea48c04e19799246ef8ba5a.tar.bz2 |
Merge pull request #6389 from austinbhale/patch-1
Bug PATCH -- updates reference link with no closing
Diffstat (limited to 'src')
-rw-r--r-- | src/htmlgen.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index 32eaff6..121106a 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -1117,7 +1117,8 @@ void HtmlGenerator::startIndexItem(const char *ref,const char *f) } t << "href=\""; t << externalRef(relPath,ref,TRUE); - if (f) t << f << Doxygen::htmlFileExtension << "\">"; + if (f) t << f << Doxygen::htmlFileExtension; + t << "\">"; } else { |