diff options
author | Justin Clarke Casey | 2009-03-05 19:32:27 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-03-05 19:32:27 +0000 |
commit | 6c735e0828063dd6e83dc6bd4c35266dd948035e (patch) | |
tree | 9593d8bf7bd700d364924d1d13d51bd564cebb8d /OpenSim/Region/CoreModules/World/Land | |
parent | * remove now unused serialization code (diff) | |
download | opensim-SC-6c735e0828063dd6e83dc6bd4c35266dd948035e.zip opensim-SC-6c735e0828063dd6e83dc6bd4c35266dd948035e.tar.gz opensim-SC-6c735e0828063dd6e83dc6bd4c35266dd948035e.tar.bz2 opensim-SC-6c735e0828063dd6e83dc6bd4c35266dd948035e.tar.xz |
* Replace some string to byte conversions for object/item name/description fields with the LLUtil function that prevents the max string size from being breached
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Land')
-rw-r--r-- | OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs index fe97714..4ae617d 100644 --- a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs +++ b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs | |||
@@ -101,7 +101,7 @@ namespace OpenSim.Region.CoreModules.World.Land | |||
101 | 101 | ||
102 | lock (m_scene) | 102 | lock (m_scene) |
103 | { | 103 | { |
104 | m_scene.LandChannel = (ILandChannel) landChannel; | 104 | m_scene.LandChannel = (ILandChannel)landChannel; |
105 | } | 105 | } |
106 | } | 106 | } |
107 | 107 | ||