diff options
author | albert-github <albert.tests@gmail.com> | 2014-02-17 19:06:06 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2014-02-17 19:06:06 (GMT) |
commit | 5d44acc0a49bd7b990bfe649efa312f5f0bb594b (patch) | |
tree | 2614704febd86fcaac12824252eca959c580361c /src/index.cpp | |
parent | 9b76c1a9bb7039962933aeef398bb7aa2f59c3a5 (diff) | |
download | Doxygen-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/index.cpp')
-rw-r--r-- | src/index.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.cpp b/src/index.cpp index a283b0c..54839f3 100644 --- a/src/index.cpp +++ b/src/index.cpp @@ -3102,7 +3102,7 @@ static void writePages(PageDef *pd,FTVHelp *ftv) if (pd->title().isEmpty()) pageTitle=pd->name(); else - pageTitle=pd->title(); + pageTitle=filterTitle(pd->title()); if (ftv) { |