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.
0.6.6-post-fixes
Homer Horwitz 2009-06-21 19:06:19 +00:00
parent 2c3a1995fc
commit 04444d408f
1 changed files with 1 additions and 1 deletions

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)
{