Do llEscapeURL with Uri.EscapeDataString instead of Uri.EscapeUriString.

Not exactly right, according to the LSL docs, but similar enough, I hope.
Fixes Mantis #3825.
This commit is contained in:
Homer Horwitz
2009-06-21 19:06:19 +00:00
parent 2c3a1995fc
commit 04444d408f

View File

@@ -8699,7 +8699,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
m_host.AddScriptLPS(1);
try
{
return Uri.EscapeUriString(url);
return Uri.EscapeDataString(url);
}
catch (Exception ex)
{