Corrected estateID to EstateID on getEstates function at PGSQLEstateData.cs

link-sitting
Fernando Oliveira 2013-10-16 23:38:13 -03:00 committed by fernando
parent f83343d302
commit 67ffb64764
1 changed files with 1 additions and 1 deletions

View File

@ -452,7 +452,7 @@ namespace OpenSim.Data.PGSQL
public List<int> GetEstates(string search)
{
List<int> result = new List<int>();
string sql = "select \"estateID\" from estate_settings where lower(\"EstateName\") = lower(:EstateName)";
string sql = "select \"EstateID\" from estate_settings where lower(\"EstateName\") = lower(:EstateName)";
using (NpgsqlConnection conn = new NpgsqlConnection(m_connectionString))
{
conn.Open();