aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorFernando Oliveira2013-10-16 23:38:13 -0300
committerfernando2013-10-16 21:58:22 -0500
commit67ffb64764aa109eee479444318b095730644c6d (patch)
tree27ac662dc6efbe96c7e421b19896338d91fe1d05 /OpenSim
parent* One More thing, add an appdomain data element to ensure that we don't dupli... (diff)
downloadopensim-SC_OLD-67ffb64764aa109eee479444318b095730644c6d.zip
opensim-SC_OLD-67ffb64764aa109eee479444318b095730644c6d.tar.gz
opensim-SC_OLD-67ffb64764aa109eee479444318b095730644c6d.tar.bz2
opensim-SC_OLD-67ffb64764aa109eee479444318b095730644c6d.tar.xz
Corrected estateID to EstateID on getEstates function at PGSQLEstateData.cs
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Data/PGSQL/PGSQLEstateData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/PGSQL/PGSQLEstateData.cs b/OpenSim/Data/PGSQL/PGSQLEstateData.cs
index 141b8ed..5ad0eaa 100644
--- a/OpenSim/Data/PGSQL/PGSQLEstateData.cs
+++ b/OpenSim/Data/PGSQL/PGSQLEstateData.cs
@@ -452,7 +452,7 @@ namespace OpenSim.Data.PGSQL
452 public List<int> GetEstates(string search) 452 public List<int> GetEstates(string search)
453 { 453 {
454 List<int> result = new List<int>(); 454 List<int> result = new List<int>();
455 string sql = "select \"estateID\" from estate_settings where lower(\"EstateName\") = lower(:EstateName)"; 455 string sql = "select \"EstateID\" from estate_settings where lower(\"EstateName\") = lower(:EstateName)";
456 using (NpgsqlConnection conn = new NpgsqlConnection(m_connectionString)) 456 using (NpgsqlConnection conn = new NpgsqlConnection(m_connectionString))
457 { 457 {
458 conn.Open(); 458 conn.Open();