diff options
author | Bojidar Marinov <bojidar.marinov.bg@gmail.com> | 2015-09-23 21:33:31 +0300 |
---|---|---|
committer | Bojidar Marinov <bojidar.marinov.bg@gmail.com> | 2015-09-23 21:33:31 +0300 |
commit | a7f0846a6bda8ec789288f1ed3db2d6d82a72322 (patch) | |
tree | d68376351b7b3cda0e73455cb6b65fbc7e486881 /core | |
parent | eea52d44c797663aad85686ecb6e0b471a989e58 (diff) |
Flip < and > in String::xml_escape. Close #2511
Before > referred to < and < to >, which is incorrect...
Diffstat (limited to 'core')
-rw-r--r-- | core/ustring.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/ustring.cpp b/core/ustring.cpp index ff7c8984fa..f6d8e6c1fe 100644 --- a/core/ustring.cpp +++ b/core/ustring.cpp @@ -3119,8 +3119,8 @@ String String::xml_escape(bool p_escape_quotes) const { String str=*this; str=str.replace("&","&"); - str=str.replace("<",">"); - str=str.replace(">","<"); + str=str.replace("<","<"); + str=str.replace(">",">"); if (p_escape_quotes) { str=str.replace("'","'"); str=str.replace("\"","""); |