merge issue: fix missing '/'
parent
6f69925c51
commit
8d33ab903b
|
@ -587,8 +587,9 @@ namespace OpenSim.Region.CoreModules.Scripting.LSLHttp
|
||||||
|
|
||||||
int pos1 = uri.IndexOf("/");// /lslhttp
|
int pos1 = uri.IndexOf("/");// /lslhttp
|
||||||
int pos2 = uri.IndexOf("/", pos1 + 1);// /lslhttp/
|
int pos2 = uri.IndexOf("/", pos1 + 1);// /lslhttp/
|
||||||
int pos3 = pos2 + 37; // /lslhttp/urlcode
|
int pos3 = uri.IndexOf("/", pos2 + 1); // /lslhttp/urlcode
|
||||||
string uri_tmp = uri.Substring(0, pos3);
|
|
||||||
|
string uri_tmp = uri.Substring(0, pos3 + 1);
|
||||||
//HTTP server code doesn't provide us with QueryStrings
|
//HTTP server code doesn't provide us with QueryStrings
|
||||||
string pathInfo;
|
string pathInfo;
|
||||||
string queryString;
|
string queryString;
|
||||||
|
|
Loading…
Reference in New Issue