diff options
author | Fernando Oliveira | 2013-10-16 23:38:13 -0300 |
---|---|---|
committer | fernando | 2013-10-16 21:58:22 -0500 |
commit | 67ffb64764aa109eee479444318b095730644c6d (patch) | |
tree | 27ac662dc6efbe96c7e421b19896338d91fe1d05 /OpenSim/Data/PGSQL | |
parent | * One More thing, add an appdomain data element to ensure that we don't dupli... (diff) | |
download | opensim-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/Data/PGSQL')
-rw-r--r-- | OpenSim/Data/PGSQL/PGSQLEstateData.cs | 2 |
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(); |