diff options
author | Diva Canto | 2009-09-22 14:46:05 -0700 |
---|---|---|
committer | Diva Canto | 2009-09-22 14:46:05 -0700 |
commit | ffd30b8ac31bc408316079ba86076bf9e984a8be (patch) | |
tree | 47c85aa445f21037576d6ce5e2df8f7477289343 /OpenSim/Region/ScriptEngine | |
parent | Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-ffd30b8ac31bc408316079ba86076bf9e984a8be.zip opensim-SC_OLD-ffd30b8ac31bc408316079ba86076bf9e984a8be.tar.gz opensim-SC_OLD-ffd30b8ac31bc408316079ba86076bf9e984a8be.tar.bz2 opensim-SC_OLD-ffd30b8ac31bc408316079ba86076bf9e984a8be.tar.xz |
Moved RegionName from RegionInfo to SimpleRegionInfo.
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index b631478..d4d5ccc 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -7838,8 +7838,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
7838 | public LSL_String llGetHTTPHeader(LSL_Key request_id, string header) | 7838 | public LSL_String llGetHTTPHeader(LSL_Key request_id, string header) |
7839 | { | 7839 | { |
7840 | m_host.AddScriptLPS(1); | 7840 | m_host.AddScriptLPS(1); |
7841 | 7841 | ||
7842 | if (m_UrlModule != null) | 7842 | if (m_UrlModule != null) |
7843 | return m_UrlModule.GetHttpHeader(new UUID(request_id), header); | 7843 | return m_UrlModule.GetHttpHeader(new UUID(request_id), header); |
7844 | return String.Empty; | 7844 | return String.Empty; |
7845 | } | 7845 | } |
@@ -9124,9 +9124,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
9124 | // Partial implementation: support for parameter flags needed | 9124 | // Partial implementation: support for parameter flags needed |
9125 | // see http://wiki.secondlife.com/wiki/llHTTPResponse | 9125 | // see http://wiki.secondlife.com/wiki/llHTTPResponse |
9126 | 9126 | ||
9127 | m_host.AddScriptLPS(1); | 9127 | m_host.AddScriptLPS(1); |
9128 | 9128 | ||
9129 | if (m_UrlModule != null) | 9129 | if (m_UrlModule != null) |
9130 | m_UrlModule.HttpResponse(new UUID(id), status,body); | 9130 | m_UrlModule.HttpResponse(new UUID(id), status,body); |
9131 | } | 9131 | } |
9132 | 9132 | ||