aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/IGridService.cs
diff options
context:
space:
mode:
authorDiva Canto2010-01-16 08:32:32 -0800
committerDiva Canto2010-01-16 08:32:32 -0800
commit5ce12c92d976fa32c076689bb3f937d8a8d60dc0 (patch)
treea986422d6f338b7797e5848c0012a52afcbb9eda /OpenSim/Services/Interfaces/IGridService.cs
parentMoved prim crossing to EntityTransferModule. Not complete yet. (diff)
downloadopensim-SC_OLD-5ce12c92d976fa32c076689bb3f937d8a8d60dc0.zip
opensim-SC_OLD-5ce12c92d976fa32c076689bb3f937d8a8d60dc0.tar.gz
opensim-SC_OLD-5ce12c92d976fa32c076689bb3f937d8a8d60dc0.tar.bz2
opensim-SC_OLD-5ce12c92d976fa32c076689bb3f937d8a8d60dc0.tar.xz
Fixed a missing field in the last regions table migration.
Diffstat (limited to '')
-rw-r--r--OpenSim/Services/Interfaces/IGridService.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Services/Interfaces/IGridService.cs b/OpenSim/Services/Interfaces/IGridService.cs
index 6a83f65..2f5e991 100644
--- a/OpenSim/Services/Interfaces/IGridService.cs
+++ b/OpenSim/Services/Interfaces/IGridService.cs
@@ -307,7 +307,7 @@ namespace OpenSim.Services.Interfaces
307 kvp["access"] = Access.ToString(); 307 kvp["access"] = Access.ToString();
308 kvp["regionSecret"] = RegionSecret; 308 kvp["regionSecret"] = RegionSecret;
309 kvp["owner_uuid"] = EstateOwner.ToString(); 309 kvp["owner_uuid"] = EstateOwner.ToString();
310 kvp["token"] = Token.ToString(); 310 kvp["Token"] = Token.ToString();
311 // Maturity doesn't seem to exist in the DB 311 // Maturity doesn't seem to exist in the DB
312 return kvp; 312 return kvp;
313 } 313 }
@@ -365,8 +365,8 @@ namespace OpenSim.Services.Interfaces
365 if (kvp.ContainsKey("owner_uuid")) 365 if (kvp.ContainsKey("owner_uuid"))
366 EstateOwner = new UUID(kvp["owner_uuid"].ToString()); 366 EstateOwner = new UUID(kvp["owner_uuid"].ToString());
367 367
368 if (kvp.ContainsKey("token")) 368 if (kvp.ContainsKey("Token"))
369 Token = kvp["token"].ToString(); 369 Token = kvp["Token"].ToString();
370 370
371 } 371 }
372 } 372 }