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
parent
2c3a1995fc
commit
04444d408f
|
@ -8699,7 +8699,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
m_host.AddScriptLPS(1);
|
m_host.AddScriptLPS(1);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return Uri.EscapeUriString(url);
|
return Uri.EscapeDataString(url);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue