diff options
author | Justin Clarke Casey | 2008-12-23 17:16:47 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-12-23 17:16:47 +0000 |
commit | c1320112a9365a95fd2f08af6a97dde8199adf17 (patch) | |
tree | a472448d43e4bd1e27ab6f678036d03617a3adc6 /OpenSim/Framework/UserProfileData.cs | |
parent | Mantis #2728 (diff) | |
download | opensim-SC_OLD-c1320112a9365a95fd2f08af6a97dde8199adf17.zip opensim-SC_OLD-c1320112a9365a95fd2f08af6a97dde8199adf17.tar.gz opensim-SC_OLD-c1320112a9365a95fd2f08af6a97dde8199adf17.tar.bz2 opensim-SC_OLD-c1320112a9365a95fd2f08af6a97dde8199adf17.tar.xz |
* Add a method to allow friendship offers to a logged in client from an offline user directly from the server
Diffstat (limited to 'OpenSim/Framework/UserProfileData.cs')
-rw-r--r-- | OpenSim/Framework/UserProfileData.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Framework/UserProfileData.cs b/OpenSim/Framework/UserProfileData.cs index b6f309d..51678e4 100644 --- a/OpenSim/Framework/UserProfileData.cs +++ b/OpenSim/Framework/UserProfileData.cs | |||
@@ -200,6 +200,14 @@ namespace OpenSim.Framework | |||
200 | get { return _surname; } | 200 | get { return _surname; } |
201 | set { _surname = value; } | 201 | set { _surname = value; } |
202 | } | 202 | } |
203 | |||
204 | /// <value> | ||
205 | /// The concatentation of the various name components. | ||
206 | /// </value> | ||
207 | public string Name | ||
208 | { | ||
209 | get { return String.Format("{0} {1}", _firstname, _surname); } | ||
210 | } | ||
203 | 211 | ||
204 | public string Email | 212 | public string Email |
205 | { | 213 | { |