diff options
author | Diva Canto | 2010-04-03 12:14:57 -0700 |
---|---|---|
committer | Diva Canto | 2010-04-03 12:14:57 -0700 |
commit | cfa941adc7f15c75341ec6c3d9d7638c59cace17 (patch) | |
tree | 8c626b9dcc0af9ad5774b3bff1b735992746aa2f /OpenSim | |
parent | * Fail storing user accounts in the remote connector. (diff) | |
download | opensim-SC_OLD-cfa941adc7f15c75341ec6c3d9d7638c59cace17.zip opensim-SC_OLD-cfa941adc7f15c75341ec6c3d9d7638c59cace17.tar.gz opensim-SC_OLD-cfa941adc7f15c75341ec6c3d9d7638c59cace17.tar.bz2 opensim-SC_OLD-cfa941adc7f15c75341ec6c3d9d7638c59cace17.tar.xz |
Last commit was too fast... must override.
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts/RemoteUserAccountServiceConnector.cs | 2 | ||||
-rw-r--r-- | OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts/RemoteUserAccountServiceConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts/RemoteUserAccountServiceConnector.cs index c3093b7..3321b38 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts/RemoteUserAccountServiceConnector.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/UserAccounts/RemoteUserAccountServiceConnector.cs | |||
@@ -144,7 +144,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.UserAccounts | |||
144 | return account; | 144 | return account; |
145 | } | 145 | } |
146 | 146 | ||
147 | public bool StoreUserAccount(UserAccount data) | 147 | public override bool StoreUserAccount(UserAccount data) |
148 | { | 148 | { |
149 | // This remote connector refuses to serve this method | 149 | // This remote connector refuses to serve this method |
150 | return false; | 150 | return false; |
diff --git a/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs b/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs index 2f9b520..1527db2 100644 --- a/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs +++ b/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs | |||
@@ -187,7 +187,7 @@ namespace OpenSim.Services.Connectors | |||
187 | return accounts; | 187 | return accounts; |
188 | } | 188 | } |
189 | 189 | ||
190 | public bool StoreUserAccount(UserAccount data) | 190 | public virtual bool StoreUserAccount(UserAccount data) |
191 | { | 191 | { |
192 | Dictionary<string, object> sendData = new Dictionary<string, object>(); | 192 | Dictionary<string, object> sendData = new Dictionary<string, object>(); |
193 | //sendData["SCOPEID"] = scopeID.ToString(); | 193 | //sendData["SCOPEID"] = scopeID.ToString(); |