Bazaar/IPNServer : capitalize keys before calling VERIFIED handler

git-svn-id: svn://ultimatepp.org/upp/trunk@4597 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
micio 2012-02-14 11:11:12 +00:00
parent 2541d5fc4d
commit b37d249f97

View file

@ -58,7 +58,7 @@ void IPNServer::OnRequest()
{
VectorMap<String, String> data;
for(int i = 0; i < post.GetCount(); i++)
data.Add(post.GetKey(i), post[i]);
data.Add(ToUpper(post.GetKey(i)), post[i]);
onVerified(data);
}
else