summaryrefslogtreecommitdiffstats
path: root/src/xmlgen.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/xmlgen.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/xmlgen.cpp')
-rw-r--r--src/xmlgen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmlgen.cpp b/src/xmlgen.cpp
index c0bfd81..efddcd4 100644
--- a/src/xmlgen.cpp
+++ b/src/xmlgen.cpp
@@ -1845,7 +1845,7 @@ static void generateXMLForPage(PageDef *pd,FTextStream &ti,bool isExample)
SectionInfo *si = Doxygen::sectionDict->find(pd->name());
if (si)
{
- t << " <title>" << convertToXML(convertCharEntitiesToUTF8(si->title))
+ t << " <title>" << convertToXML(convertCharEntitiesToUTF8(filterTitle(si->title)))
<< "</title>" << endl;
}
}