diff options
author | Tedd Hansen | 2008-02-02 05:07:02 +0000 |
---|---|---|
committer | Tedd Hansen | 2008-02-02 05:07:02 +0000 |
commit | b57d9be856ba53a3014a2fac475de35cf730d0f6 (patch) | |
tree | 680900b9da2f4d1379a175f3707578b898680998 /OpenSim/Region/ScriptEngine/DotNetEngine | |
parent | Almost forgot to check in: (diff) | |
download | opensim-SC_OLD-b57d9be856ba53a3014a2fac475de35cf730d0f6.zip opensim-SC_OLD-b57d9be856ba53a3014a2fac475de35cf730d0f6.tar.gz opensim-SC_OLD-b57d9be856ba53a3014a2fac475de35cf730d0f6.tar.bz2 opensim-SC_OLD-b57d9be856ba53a3014a2fac475de35cf730d0f6.tar.xz |
Re-enabled AllowedCompilers function
Added notice in OpenSim.ini that config refresh function is disabled
Diffstat (limited to 'OpenSim/Region/ScriptEngine/DotNetEngine')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs index ded0fcc..2622cb9 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs | |||
@@ -247,7 +247,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | |||
247 | // Not allowed to compile to this language! | 247 | // Not allowed to compile to this language! |
248 | string errtext = String.Empty; | 248 | string errtext = String.Empty; |
249 | errtext += "The compiler for language \"" + l.ToString() + "\" is not in list of allowed compilers. Script will not be executed!"; | 249 | errtext += "The compiler for language \"" + l.ToString() + "\" is not in list of allowed compilers. Script will not be executed!"; |
250 | //throw new Exception(errtext); | 250 | throw new Exception(errtext); |
251 | } | 251 | } |
252 | 252 | ||
253 | string compileScript = Script; | 253 | string compileScript = Script; |