diff options
author | Melanie Thielker | 2010-07-01 16:40:26 +0200 |
---|---|---|
committer | Melanie Thielker | 2010-07-01 16:40:26 +0200 |
commit | d5cbe4cb75a40a5b98d92d7fac504943edf428a1 (patch) | |
tree | fa80c0576bf36e985a2c21062f554c6015644db2 /OpenSim/Region/CoreModules | |
parent | Avoid a spurious error message when taking a friend's no copy item (diff) | |
download | opensim-SC_OLD-d5cbe4cb75a40a5b98d92d7fac504943edf428a1.zip opensim-SC_OLD-d5cbe4cb75a40a5b98d92d7fac504943edf428a1.tar.gz opensim-SC_OLD-d5cbe4cb75a40a5b98d92d7fac504943edf428a1.tar.bz2 opensim-SC_OLD-d5cbe4cb75a40a5b98d92d7fac504943edf428a1.tar.xz |
Remove trailing slash from HTTP URLs to be compatible with SL
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs index 9b565ed..ab27da9 100644 --- a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs +++ b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs | |||
@@ -155,7 +155,7 @@ namespace OpenSim.Region.CoreModules.Scripting.LSLHttp | |||
155 | 155 | ||
156 | m_UrlMap[url] = urlData; | 156 | m_UrlMap[url] = urlData; |
157 | 157 | ||
158 | string uri = "/lslhttp/" + urlcode.ToString() + "/"; | 158 | string uri = "/lslhttp/" + urlcode.ToString(); |
159 | 159 | ||
160 | m_HttpServer.AddPollServiceHTTPHandler(uri,HandleHttpPoll, | 160 | m_HttpServer.AddPollServiceHTTPHandler(uri,HandleHttpPoll, |
161 | new PollServiceEventArgs(HttpRequestHandler,HasEvents, GetEvents, NoEvents, | 161 | new PollServiceEventArgs(HttpRequestHandler,HasEvents, GetEvents, NoEvents, |