summaryrefslogtreecommitdiffstats
path: root/src/htmlgen.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2014-02-17 19:06:06 (GMT)
committeralbert-github <albert.tests@gmail.com>2014-02-17 19:06:06 (GMT)
commit5d44acc0a49bd7b990bfe649efa312f5f0bb594b (patch)
tree2614704febd86fcaac12824252eca959c580361c /src/htmlgen.cpp
parent9b76c1a9bb7039962933aeef398bb7aa2f59c3a5 (diff)
downloadDoxygen-5d44acc0a49bd7b990bfe649efa312f5f0bb594b.zip
Doxygen-5d44acc0a49bd7b990bfe649efa312f5f0bb594b.tar.gz
Doxygen-5d44acc0a49bd7b990bfe649efa312f5f0bb594b.tar.bz2
Bug 674851 - Percent to prevent auto-linking in page title is not removed for navpath
remove the % sign from some relevant places. The % sign is to prevent automatic linking.
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r--src/htmlgen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp
index fa446ed..e21071c 100644
--- a/src/htmlgen.cpp
+++ b/src/htmlgen.cpp
@@ -1683,7 +1683,7 @@ void HtmlGenerator::startFile(const char *name,const char *,
Doxygen::indexList->addIndexFile(fileName);
lastFile = fileName;
- t << substituteHtmlKeywords(g_header,convertToHtml(title),relPath);
+ t << substituteHtmlKeywords(g_header,convertToHtml(filterTitle(title)),relPath);
t << "<!-- " << theTranslator->trGeneratedBy() << " Doxygen "
<< versionString << " -->" << endl;