diff options
author | Teravus Ovares (Dan Olivares) | 2010-02-13 05:50:57 -0500 |
---|---|---|
committer | Teravus Ovares (Dan Olivares) | 2010-02-13 05:50:57 -0500 |
commit | 45493171b01c1a623edc70fcb92c48e307c7f89f (patch) | |
tree | fa49aa4c60c4d667c276c3d0aba91a3afd458fdd | |
parent | * This is an attempt to resolve mantis 4437 by using SqliteAdapter type state... (diff) | |
download | opensim-SC_OLD-45493171b01c1a623edc70fcb92c48e307c7f89f.zip opensim-SC_OLD-45493171b01c1a623edc70fcb92c48e307c7f89f.tar.gz opensim-SC_OLD-45493171b01c1a623edc70fcb92c48e307c7f89f.tar.bz2 opensim-SC_OLD-45493171b01c1a623edc70fcb92c48e307c7f89f.tar.xz |
* SQLite match code casing with regionsettings table field casing (what's with the upper case S in Sandbox while the rest is lower case 0.o)
* It's doubtful that this will have any effect on mantis http://opensimulator.org/mantis/view.php?id=4577 . Sqlite 3 is required, Sqlite 2 was reported.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteRegionData.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteRegionData.cs b/OpenSim/Data/SQLite/SQLiteRegionData.cs index 1285064..5a4ee2a 100644 --- a/OpenSim/Data/SQLite/SQLiteRegionData.cs +++ b/OpenSim/Data/SQLite/SQLiteRegionData.cs | |||
@@ -1750,7 +1750,7 @@ namespace OpenSim.Data.SQLite | |||
1750 | row["terrain_raise_limit"] = settings.TerrainRaiseLimit; | 1750 | row["terrain_raise_limit"] = settings.TerrainRaiseLimit; |
1751 | row["terrain_lower_limit"] = settings.TerrainLowerLimit; | 1751 | row["terrain_lower_limit"] = settings.TerrainLowerLimit; |
1752 | row["use_estate_sun"] = settings.UseEstateSun; | 1752 | row["use_estate_sun"] = settings.UseEstateSun; |
1753 | row["sandbox"] = settings.Sandbox; | 1753 | row["Sandbox"] = settings.Sandbox; // database uses upper case S for sandbox |
1754 | row["sunvectorx"] = settings.SunVector.X; | 1754 | row["sunvectorx"] = settings.SunVector.X; |
1755 | row["sunvectory"] = settings.SunVector.Y; | 1755 | row["sunvectory"] = settings.SunVector.Y; |
1756 | row["sunvectorz"] = settings.SunVector.Z; | 1756 | row["sunvectorz"] = settings.SunVector.Z; |