aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorBlueWall2013-12-16 15:43:34 -0500
committerBlueWall2013-12-16 16:26:28 -0500
commit017ae9132ef6be0bbc111c66e658edb2ad73e58e (patch)
treedafbb2cefd4903a66870dce232f25a0349a94094 /OpenSim/Data
parentPopulate user preferences with UserAccount email if it is present, else retur... (diff)
downloadopensim-SC_OLD-017ae9132ef6be0bbc111c66e658edb2ad73e58e.zip
opensim-SC_OLD-017ae9132ef6be0bbc111c66e658edb2ad73e58e.tar.gz
opensim-SC_OLD-017ae9132ef6be0bbc111c66e658edb2ad73e58e.tar.bz2
opensim-SC_OLD-017ae9132ef6be0bbc111c66e658edb2ad73e58e.tar.xz
Fix issue with editing notes for other avatars
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/MySQL/MySQLUserProfilesData.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/MySQLUserProfilesData.cs b/OpenSim/Data/MySQL/MySQLUserProfilesData.cs
index 48044f0..13e0a57 100644
--- a/OpenSim/Data/MySQL/MySQLUserProfilesData.cs
+++ b/OpenSim/Data/MySQL/MySQLUserProfilesData.cs
@@ -546,6 +546,10 @@ namespace OpenSim.Data.MySQL
546 reader.Read(); 546 reader.Read();
547 notes.Notes = OSD.FromString((string)reader["notes"]); 547 notes.Notes = OSD.FromString((string)reader["notes"]);
548 } 548 }
549 else
550 {
551 notes.Notes = OSD.FromString("");
552 }
549 } 553 }
550 } 554 }
551 } 555 }