aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-04-23 18:24:39 +0000
committerJustin Clarke Casey2009-04-23 18:24:39 +0000
commitef9d140022b57b175f41602731ec73775bdf2d9c (patch)
treed7a561e3ce85b3064b3f84b06d2e3f2fb4f4301e /OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs
parentfix up contributors list to have 3 contributors sections (diff)
downloadopensim-SC_OLD-ef9d140022b57b175f41602731ec73775bdf2d9c.zip
opensim-SC_OLD-ef9d140022b57b175f41602731ec73775bdf2d9c.tar.gz
opensim-SC_OLD-ef9d140022b57b175f41602731ec73775bdf2d9c.tar.bz2
opensim-SC_OLD-ef9d140022b57b175f41602731ec73775bdf2d9c.tar.xz
* Add user data plugin to store temporary profiles (which are distinct from cached)
* Plugin not yet used * Existing functionality should not be affected in any way
Diffstat (limited to 'OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs')
-rw-r--r--OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs b/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs
index ee8562f..de6bd61 100644
--- a/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs
+++ b/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs
@@ -57,8 +57,8 @@ namespace OpenSim.Region.Communications.OGS1
57 57
58 // This plugin arrangement could eventually be configurable rather than hardcoded here. 58 // This plugin arrangement could eventually be configurable rather than hardcoded here.
59 OGS1UserServices userServices = new OGS1UserServices(this); 59 OGS1UserServices userServices = new OGS1UserServices(this);
60 OGS1UserDataPlugin userDataPlugin = new OGS1UserDataPlugin(this); 60 userServices.AddPlugin(new TemporaryUserProfilePlugin());
61 userServices.AddPlugin(userDataPlugin); 61 userServices.AddPlugin(new OGS1UserDataPlugin(this));
62 62
63 m_userService = userServices; 63 m_userService = userServices;
64 m_messageService = userServices; 64 m_messageService = userServices;