Properly handle + in urls

This commit is contained in:
Martin 2014-03-30 03:49:48 +02:00
parent 53ff7392e9
commit 96fe8a69de

View File

@ -1378,6 +1378,10 @@ wstring htmldecode(string str, bool html, char xc)
}
i+=2;
}
else if(str[i]=='+' && !html)
{
tmp+=' ';
}
else
{
tmp+=str[i];