From b37d249f97172bc767425cfea43cbc37534185bd Mon Sep 17 00:00:00 2001 From: micio Date: Tue, 14 Feb 2012 11:11:12 +0000 Subject: [PATCH] Bazaar/IPNServer : capitalize keys before calling VERIFIED handler git-svn-id: svn://ultimatepp.org/upp/trunk@4597 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- bazaar/IPNServer/IPNServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazaar/IPNServer/IPNServer.cpp b/bazaar/IPNServer/IPNServer.cpp index fb09fd7cc..9e93f74fd 100644 --- a/bazaar/IPNServer/IPNServer.cpp +++ b/bazaar/IPNServer/IPNServer.cpp @@ -58,7 +58,7 @@ void IPNServer::OnRequest() { VectorMap 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