summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2018-10-28 14:42:59 (GMT)
committerGitHub <noreply@github.com>2018-10-28 14:42:59 (GMT)
commit9fe4f44dc1213b057794373b592f3c7be3321937 (patch)
tree16fc0c1f8f1badf19c55c2f45d8321b39d834035
parent271e9a9ee5a4f800902e122f98a3b215764a7906 (diff)
parent97f2d220240a1f6692627171398a06a3fa238639 (diff)
downloadDoxygen-9fe4f44dc1213b057794373b592f3c7be3321937.zip
Doxygen-9fe4f44dc1213b057794373b592f3c7be3321937.tar.gz
Doxygen-9fe4f44dc1213b057794373b592f3c7be3321937.tar.bz2
Merge pull request #6549 from albert-github/feature/issue_6533
issue_6533: PHP: Namespaced typehints in deprecated methods not handled correctly
-rw-r--r--src/reflist.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/reflist.cpp b/src/reflist.cpp
index 1da603e..e551743 100644
--- a/src/reflist.cpp
+++ b/src/reflist.cpp
@@ -171,7 +171,8 @@ void RefList::generatePage()
if (!item->args.isEmpty())
{
// escape @'s in argument list, needed for Java annotations (see issue #6208)
- doc += substitute(item->args,"@","@@");
+ // escape \'s in argument list (see issue #6533)
+ doc += substitute(substitute(item->args,"@","@@"),"\\","\\\\");
}
doc += "</dt><dd> ";
doc += item->text;