remove another wrong ':'
parent
76019258e3
commit
ba8d188a0d
|
@ -135,7 +135,7 @@ namespace OpenSim.Framework.Servers.HttpServer
|
||||||
response.StatusCode = responsecode;
|
response.StatusCode = responsecode;
|
||||||
if (responsecode == (int)HttpStatusCode.Moved)
|
if (responsecode == (int)HttpStatusCode.Moved)
|
||||||
{
|
{
|
||||||
response.AddHeader("Location:", (string)responsedata["str_redirect_location"]);
|
response.AddHeader("Location", (string)responsedata["str_redirect_location"]);
|
||||||
response.KeepAlive = false;
|
response.KeepAlive = false;
|
||||||
PollServiceArgs.RequestsHandled++;
|
PollServiceArgs.RequestsHandled++;
|
||||||
response.Send();
|
response.Send();
|
||||||
|
|
Loading…
Reference in New Issue