summaryrefslogtreecommitdiffstats
path: root/src/context.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2016-10-22 18:05:30 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2016-10-22 18:05:30 (GMT)
commit6300c03b6201ca7981388a6d3c01486f8a8adba0 (patch)
tree5aed3d70c4cf3748e7923f3f290b8c760e5c1f33 /src/context.cpp
parentd6ec94c3b7f583f4074142a6302ffd48f45ddd2e (diff)
downloadDoxygen-6300c03b6201ca7981388a6d3c01486f8a8adba0.zip
Doxygen-6300c03b6201ca7981388a6d3c01486f8a8adba0.tar.gz
Doxygen-6300c03b6201ca7981388a6d3c01486f8a8adba0.tar.bz2
Bug 773354 - "name" attribute of image map not urlencoded, not working in Chrome
Diffstat (limited to 'src/context.cpp')
-rw-r--r--src/context.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/context.cpp b/src/context.cpp
index e13aa69..2d4200e 100644
--- a/src/context.cpp
+++ b/src/context.cpp
@@ -1989,7 +1989,7 @@ class ClassContext::Private : public DefinitionContext<ClassContext::Private>
t << "<img src=\"";
t << relPathAsString() << m_classDef->getOutputFileBase();
t << ".png\" usemap=\"#" << convertToId(name) << "_map\" alt=\"\"/>" << endl;
- t << "<map id=\"" << convertToId(name) << "_map\" name=\"" << name << "_map\">" << endl;
+ t << "<map id=\"" << convertToId(name) << "_map\" name=\"" << convertToId(name) << "_map\">" << endl;
d.writeImage(t,g_globals.outputDir,
relPathAsString(),
m_classDef->getOutputFileBase());