diff options
author | Melanie Thielker | 2008-10-03 21:44:33 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-10-03 21:44:33 +0000 |
commit | ab260b5d23da0cf02973583bd869ad8901d63b92 (patch) | |
tree | e0c9b068900bc05ef34789bd04fafade85e464ae /OpenSim/Region/ScriptEngine/DotNetEngine/EventManager.cs | |
parent | Disabled some thread aborts in the IRC module that I added earlier and don't ... (diff) | |
download | opensim-SC_OLD-ab260b5d23da0cf02973583bd869ad8901d63b92.zip opensim-SC_OLD-ab260b5d23da0cf02973583bd869ad8901d63b92.tar.gz opensim-SC_OLD-ab260b5d23da0cf02973583bd869ad8901d63b92.tar.bz2 opensim-SC_OLD-ab260b5d23da0cf02973583bd869ad8901d63b92.tar.xz |
Fix: Mantis#2326: Fix: privilege escalation through attach from ground
Fix: objects being duplicated inventory on detach. Fix: Mad jumping around of
attachments while editing. Fix: Attachments being persisted to database on
login. Fix: Attachments being persisted when changed by a script like
invisprim refresh. Fix: Attachpoint set, but not reset correctly. Fix: prevent
spurious full updates while editing attachments. Several other fixes
Diffstat (limited to 'OpenSim/Region/ScriptEngine/DotNetEngine/EventManager.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/EventManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/EventManager.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/EventManager.cs index ef5f83d..4abea40 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/EventManager.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/EventManager.cs | |||
@@ -244,7 +244,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine | |||
244 | 244 | ||
245 | int lineEnd = script.IndexOf('\n'); | 245 | int lineEnd = script.IndexOf('\n'); |
246 | 246 | ||
247 | if (lineEnd != -1) | 247 | if (lineEnd > 1) |
248 | { | 248 | { |
249 | string firstline = script.Substring(0, lineEnd).Trim(); | 249 | string firstline = script.Substring(0, lineEnd).Trim(); |
250 | 250 | ||