diff options
Diffstat (limited to 'OpenSim/ApplicationPlugins/RemoteController')
-rw-r--r-- | OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs index 08f3dc7..70b7d88 100644 --- a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs +++ b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | |||
@@ -170,7 +170,7 @@ namespace OpenSim.ApplicationPlugins.RemoteController | |||
170 | { | 170 | { |
171 | foreach (string enabledMethod in enabledMethods.Split('|')) | 171 | foreach (string enabledMethod in enabledMethods.Split('|')) |
172 | { | 172 | { |
173 | m_httpServer.AddXmlRPCHandler(enabledMethod, availableMethods[enabledMethod]); | 173 | m_httpServer.AddXmlRPCHandler(enabledMethod, availableMethods[enabledMethod], false); |
174 | } | 174 | } |
175 | } | 175 | } |
176 | } | 176 | } |
@@ -3115,7 +3115,7 @@ namespace OpenSim.ApplicationPlugins.RemoteController | |||
3115 | UserAccount account = userAccountService.GetUserAccount(scopeID, firstName, lastName); | 3115 | UserAccount account = userAccountService.GetUserAccount(scopeID, firstName, lastName); |
3116 | if (null == account) | 3116 | if (null == account) |
3117 | { | 3117 | { |
3118 | account = new UserAccount(scopeID, firstName, lastName, email); | 3118 | account = new UserAccount(scopeID, UUID.Random(), firstName, lastName, email); |
3119 | if (account.ServiceURLs == null || (account.ServiceURLs != null && account.ServiceURLs.Count == 0)) | 3119 | if (account.ServiceURLs == null || (account.ServiceURLs != null && account.ServiceURLs.Count == 0)) |
3120 | { | 3120 | { |
3121 | account.ServiceURLs = new Dictionary<string, object>(); | 3121 | account.ServiceURLs = new Dictionary<string, object>(); |