mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
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:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user