diff --git a/stringtools.cpp b/stringtools.cpp index e6680efe..87e0d465 100644 --- a/stringtools.cpp +++ b/stringtools.cpp @@ -1378,6 +1378,10 @@ wstring htmldecode(string str, bool html, char xc) } i+=2; } + else if(str[i]=='+' && !html) + { + tmp+=' '; + } else { tmp+=str[i];