aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLUserData.cs
diff options
context:
space:
mode:
authorSean Dague2008-11-06 17:07:08 +0000
committerSean Dague2008-11-06 17:07:08 +0000
commit46492f3c1182d68139f914bfe89c81ca8dae1733 (patch)
treefde57370dd37966aa0c034faaeb24570fb71cd14 /OpenSim/Data/MySQL/MySQLUserData.cs
parentDisable distance sorting for child agents. It makes no sense there, as the (diff)
downloadopensim-SC_OLD-46492f3c1182d68139f914bfe89c81ca8dae1733.zip
opensim-SC_OLD-46492f3c1182d68139f914bfe89c81ca8dae1733.tar.gz
opensim-SC_OLD-46492f3c1182d68139f914bfe89c81ca8dae1733.tar.bz2
opensim-SC_OLD-46492f3c1182d68139f914bfe89c81ca8dae1733.tar.xz
From: arthursv@linux.vnet.ibm.com
Add more unit tests for user cases Persist more user fields into mysql that already had columns defined but weren't getting passed to the mysql manager.
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/MySQL/MySQLUserData.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/MySQL/MySQLUserData.cs b/OpenSim/Data/MySQL/MySQLUserData.cs
index 47670d2..82b5bbc 100644
--- a/OpenSim/Data/MySQL/MySQLUserData.cs
+++ b/OpenSim/Data/MySQL/MySQLUserData.cs
@@ -643,13 +643,13 @@ namespace OpenSim.Data.MySQL
643 try 643 try
644 { 644 {
645 dbm.Manager.insertUserRow(user.ID, user.FirstName, user.SurName, user.Email, user.PasswordHash, user.PasswordSalt, 645 dbm.Manager.insertUserRow(user.ID, user.FirstName, user.SurName, user.Email, user.PasswordHash, user.PasswordSalt,
646 user.HomeRegion, user.HomeLocation.X, user.HomeLocation.Y, 646 user.HomeRegion, user.HomeRegionID, user.HomeLocation.X, user.HomeLocation.Y,
647 user.HomeLocation.Z, 647 user.HomeLocation.Z,
648 user.HomeLookAt.X, user.HomeLookAt.Y, user.HomeLookAt.Z, user.Created, 648 user.HomeLookAt.X, user.HomeLookAt.Y, user.HomeLookAt.Z, user.Created,
649 user.LastLogin, user.UserInventoryURI, user.UserAssetURI, 649 user.LastLogin, user.UserInventoryURI, user.UserAssetURI,
650 user.CanDoMask, user.WantDoMask, 650 user.CanDoMask, user.WantDoMask,
651 user.AboutText, user.FirstLifeAboutText, user.Image, 651 user.AboutText, user.FirstLifeAboutText, user.Image,
652 user.FirstLifeImage, user.WebLoginKey); 652 user.FirstLifeImage, user.WebLoginKey, user.UserFlags, user.GodLevel, user.CustomType, user.Partner);
653 } 653 }
654 catch (Exception e) 654 catch (Exception e)
655 { 655 {