diff options
author | Homer Horwitz | 2009-06-21 19:06:19 +0000 |
---|---|---|
committer | Homer Horwitz | 2009-06-21 19:06:19 +0000 |
commit | 04444d408fcdf4e07c00f8e6639a177049e9f074 (patch) | |
tree | f43e6166963ae897287639ac8cdf959627218265 | |
parent | Publish a method on ICompiler to generate the CIL assembly path (diff) | |
download | opensim-SC_OLD-04444d408fcdf4e07c00f8e6639a177049e9f074.zip opensim-SC_OLD-04444d408fcdf4e07c00f8e6639a177049e9f074.tar.gz opensim-SC_OLD-04444d408fcdf4e07c00f8e6639a177049e9f074.tar.bz2 opensim-SC_OLD-04444d408fcdf4e07c00f8e6639a177049e9f074.tar.xz |
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.
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index d812e48..45b9f28 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -8699,7 +8699,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
8699 | m_host.AddScriptLPS(1); | 8699 | m_host.AddScriptLPS(1); |
8700 | try | 8700 | try |
8701 | { | 8701 | { |
8702 | return Uri.EscapeUriString(url); | 8702 | return Uri.EscapeDataString(url); |
8703 | } | 8703 | } |
8704 | catch (Exception ex) | 8704 | catch (Exception ex) |
8705 | { | 8705 | { |