aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLManager.cs
diff options
context:
space:
mode:
authorOpenSim Master2010-01-18 13:47:41 -0800
committerJohn Hurliman2010-02-05 17:45:36 -0800
commit310e14cf03e5b4f78e1643b2eb3b1f104def6888 (patch)
tree9a49d9d0d5307e50b789754a22aee87c24156761 /OpenSim/Data/MySQL/MySQLManager.cs
parent* Fixed the Cable Beach inventory server to save the CreatorID as well as pro... (diff)
downloadopensim-SC_OLD-310e14cf03e5b4f78e1643b2eb3b1f104def6888.zip
opensim-SC_OLD-310e14cf03e5b4f78e1643b2eb3b1f104def6888.tar.gz
opensim-SC_OLD-310e14cf03e5b4f78e1643b2eb3b1f104def6888.tar.bz2
opensim-SC_OLD-310e14cf03e5b4f78e1643b2eb3b1f104def6888.tar.xz
Fixing an incorrect logging message in insertUserRow
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/MySQL/MySQLManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/MySQLManager.cs b/OpenSim/Data/MySQL/MySQLManager.cs
index a6cce57..243394e 100644
--- a/OpenSim/Data/MySQL/MySQLManager.cs
+++ b/OpenSim/Data/MySQL/MySQLManager.cs
@@ -778,7 +778,7 @@ namespace OpenSim.Data.MySQL
778 string aboutText, string firstText, 778 string aboutText, string firstText,
779 UUID profileImage, UUID firstImage, UUID webLoginKey, int userFlags, int godLevel, string customType, UUID partner) 779 UUID profileImage, UUID firstImage, UUID webLoginKey, int userFlags, int godLevel, string customType, UUID partner)
780 { 780 {
781 m_log.Debug("[MySQLManager]: Fetching profile for " + uuid.ToString()); 781 m_log.Debug("[MySQLManager]: Creating profile for \"" + username + " " + lastname + "\" (" + uuid + ")");
782 string sql = 782 string sql =
783 "INSERT INTO users (`UUID`, `username`, `lastname`, `email`, `passwordHash`, `passwordSalt`, `homeRegion`, `homeRegionID`, "; 783 "INSERT INTO users (`UUID`, `username`, `lastname`, `email`, `passwordHash`, `passwordSalt`, `homeRegion`, `homeRegionID`, ";
784 sql += 784 sql +=