summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2020-09-06 09:38:15 (GMT)
committeralbert-github <albert.tests@gmail.com>2020-09-06 09:38:15 (GMT)
commit175b94528ee0f2b51b631a262a053ec15f497738 (patch)
treef6b220fdc5aea38c3e435338c11e337a9bce5391 /src
parenta8aac6faa9baa08623ffcd7a1bc58a7dd3386b3b (diff)
downloadDoxygen-175b94528ee0f2b51b631a262a053ec15f497738.zip
Doxygen-175b94528ee0f2b51b631a262a053ec15f497738.tar.gz
Doxygen-175b94528ee0f2b51b631a262a053ec15f497738.tar.bz2
Not always linking in map as maps use name instead if id
The map construct runs apparently not through `id` but through `name` and thus breaking here the possibility to link Also have `name=` use the `correctId`. This is a regression on #7840
Diffstat (limited to 'src')
-rw-r--r--src/dotfilepatcher.cpp2
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;
}