mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
Corrected estateID to EstateID on getEstates function at PGSQLEstateData.cs
This commit is contained in:
committed by
fernando
parent
f83343d302
commit
67ffb64764
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user