diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2020-09-06 11:54:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-06 11:54:46 (GMT) |
commit | 4df7474c952497c78af7bdf9f303437b6a7fe98b (patch) | |
tree | f6b220fdc5aea38c3e435338c11e337a9bce5391 | |
parent | a8aac6faa9baa08623ffcd7a1bc58a7dd3386b3b (diff) | |
parent | 175b94528ee0f2b51b631a262a053ec15f497738 (diff) | |
download | Doxygen-4df7474c952497c78af7bdf9f303437b6a7fe98b.zip Doxygen-4df7474c952497c78af7bdf9f303437b6a7fe98b.tar.gz Doxygen-4df7474c952497c78af7bdf9f303437b6a7fe98b.tar.bz2 |
Merge pull request #8012 from albert-github/feature/regr_7840
Not always linking in map as maps use name instead of id
-rw-r--r-- | src/dotfilepatcher.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotfilepatcher.cpp b/src/dotfilepatcher.cpp index 17f8cb7..099359d 100644 --- a/src/dotfilepatcher.cpp +++ b/src/dotfilepatcher.cpp @@ -460,7 +460,7 @@ bool DotFilePatcher::run() const convertMapFile(tt,map->mapFile,map->relPath,map->urlOnly,map->context); if (!result.isEmpty()) { - t << "<map name=\"" << map->label << "\" id=\"" << correctId(map->label) << "\">" << endl; + t << "<map name=\"" << correctId(map->label) << "\" id=\"" << correctId(map->label) << "\">" << endl; t << result; t << "</map>" << endl; } |