Mantis#1127. Thank you kindly, Grumly57 for a patch that:

Addresses HTTP_METHOD parameter does not work for POST requests.
0.6.0-stable
Charles Krinke 2008-07-09 18:42:34 +00:00
parent 130cbd4376
commit 96b64d6973
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ namespace OpenSim.Region.Environment.Modules.Scripting.HttpRequest
if (parameters != null)
{
string[] parms = parameters.ToArray();
for (int i = 0; i < parms.Length / 2; i += 2)
for (int i = 0; i < parms.Length; i += 2)
{
switch (Int32.Parse(parms[i]))
{