mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 08:06:27 +08:00
Store and retrieve user profile url at runtime Not yet persisted Thanks Fly-Man
This commit is contained in:
@@ -114,6 +114,11 @@ namespace OpenSim.Framework
|
||||
/// </summary>
|
||||
private uint m_profileWantDoMask; // Profile window "I want to" mask
|
||||
|
||||
/// <summary>
|
||||
/// The profile url for an avatar
|
||||
/// </summary>
|
||||
private string m_profileUrl;
|
||||
|
||||
private UUID m_rootInventoryFolderId;
|
||||
|
||||
/// <summary>
|
||||
@@ -349,6 +354,12 @@ namespace OpenSim.Framework
|
||||
set { m_profileFirstText = value; }
|
||||
}
|
||||
|
||||
public string ProfileUrl
|
||||
{
|
||||
get { return m_profileUrl; }
|
||||
set { m_profileUrl = value; }
|
||||
}
|
||||
|
||||
public UUID Image
|
||||
{
|
||||
get { return m_profileImage; }
|
||||
|
||||
Reference in New Issue
Block a user