diff options
author | Justin Clarke Casey | 2008-01-11 14:56:45 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-01-11 14:56:45 +0000 |
commit | c7b25967e71cb110e09859cc6e923eaede17cd0d (patch) | |
tree | 17792e53b696b20429b9e0b8dad329791d1c834b | |
parent | Switch prim items type representation to use int rather than strings. (diff) | |
download | opensim-SC_OLD-c7b25967e71cb110e09859cc6e923eaede17cd0d.zip opensim-SC_OLD-c7b25967e71cb110e09859cc6e923eaede17cd0d.tar.gz opensim-SC_OLD-c7b25967e71cb110e09859cc6e923eaede17cd0d.tar.bz2 opensim-SC_OLD-c7b25967e71cb110e09859cc6e923eaede17cd0d.tar.xz |
Turn off accidental hardcoding
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Environment/StorageManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/StorageManager.cs b/OpenSim/Region/Environment/StorageManager.cs index 5629483..811e452 100644 --- a/OpenSim/Region/Environment/StorageManager.cs +++ b/OpenSim/Region/Environment/StorageManager.cs | |||
@@ -62,7 +62,7 @@ namespace OpenSim.Region.Environment | |||
62 | { | 62 | { |
63 | IRegionDataStore plug = | 63 | IRegionDataStore plug = |
64 | (IRegionDataStore) Activator.CreateInstance(pluginAssembly.GetType(pluginType.ToString())); | 64 | (IRegionDataStore) Activator.CreateInstance(pluginAssembly.GetType(pluginType.ToString())); |
65 | plug.Initialise(connectionstring, true); | 65 | plug.Initialise(connectionstring, false); |
66 | 66 | ||
67 | m_dataStore = plug; | 67 | m_dataStore = plug; |
68 | 68 | ||