Mantis#1127. Thank you kindly, Grumly57 for a patch that:
Addresses HTTP_METHOD parameter does not work for POST requests.0.6.0-stable
parent
130cbd4376
commit
96b64d6973
|
@ -117,7 +117,7 @@ namespace OpenSim.Region.Environment.Modules.Scripting.HttpRequest
|
||||||
if (parameters != null)
|
if (parameters != null)
|
||||||
{
|
{
|
||||||
string[] parms = parameters.ToArray();
|
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]))
|
switch (Int32.Parse(parms[i]))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue