diff options
author | John Hurliman | 2010-09-12 14:21:51 -0700 |
---|---|---|
committer | John Hurliman | 2010-09-12 14:21:51 -0700 |
commit | c03b24cbfdc449cf326cf0f560395753339169dc (patch) | |
tree | d62a666839d3c638b5c9799c70be971a2d6d6c18 /OpenSim/Services/UserAccountService/UserAccountService.cs | |
parent | * Added ISimulationDataService and IEstateDataService (diff) | |
parent | Formatting cleanup. (diff) | |
download | opensim-SC_OLD-c03b24cbfdc449cf326cf0f560395753339169dc.zip opensim-SC_OLD-c03b24cbfdc449cf326cf0f560395753339169dc.tar.gz opensim-SC_OLD-c03b24cbfdc449cf326cf0f560395753339169dc.tar.bz2 opensim-SC_OLD-c03b24cbfdc449cf326cf0f560395753339169dc.tar.xz |
Merged
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Services/UserAccountService/UserAccountService.cs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/OpenSim/Services/UserAccountService/UserAccountService.cs b/OpenSim/Services/UserAccountService/UserAccountService.cs index 65c247f..f376cf8 100644 --- a/OpenSim/Services/UserAccountService/UserAccountService.cs +++ b/OpenSim/Services/UserAccountService/UserAccountService.cs | |||
@@ -97,10 +97,10 @@ namespace OpenSim.Services.UserAccountService | |||
97 | public UserAccount GetUserAccount(UUID scopeID, string firstName, | 97 | public UserAccount GetUserAccount(UUID scopeID, string firstName, |
98 | string lastName) | 98 | string lastName) |
99 | { | 99 | { |
100 | // m_log.DebugFormat( | 100 | // m_log.DebugFormat( |
101 | // "[USER ACCOUNT SERVICE]: Retrieving account by username for {0} {1}, scope {2}", | 101 | // "[USER ACCOUNT SERVICE]: Retrieving account by username for {0} {1}, scope {2}", |
102 | // firstName, lastName, scopeID); | 102 | // firstName, lastName, scopeID); |
103 | 103 | ||
104 | UserAccountData[] d; | 104 | UserAccountData[] d; |
105 | 105 | ||
106 | if (scopeID != UUID.Zero) | 106 | if (scopeID != UUID.Zero) |
@@ -235,10 +235,10 @@ namespace OpenSim.Services.UserAccountService | |||
235 | 235 | ||
236 | public bool StoreUserAccount(UserAccount data) | 236 | public bool StoreUserAccount(UserAccount data) |
237 | { | 237 | { |
238 | // m_log.DebugFormat( | 238 | // m_log.DebugFormat( |
239 | // "[USER ACCOUNT SERVICE]: Storing user account for {0} {1} {2}, scope {3}", | 239 | // "[USER ACCOUNT SERVICE]: Storing user account for {0} {1} {2}, scope {3}", |
240 | // data.FirstName, data.LastName, data.PrincipalID, data.ScopeID); | 240 | // data.FirstName, data.LastName, data.PrincipalID, data.ScopeID); |
241 | 241 | ||
242 | UserAccountData d = new UserAccountData(); | 242 | UserAccountData d = new UserAccountData(); |
243 | 243 | ||
244 | d.FirstName = data.FirstName; | 244 | d.FirstName = data.FirstName; |
@@ -285,7 +285,7 @@ namespace OpenSim.Services.UserAccountService | |||
285 | #endregion | 285 | #endregion |
286 | 286 | ||
287 | #region Console commands | 287 | #region Console commands |
288 | 288 | ||
289 | /// <summary> | 289 | /// <summary> |
290 | /// Handle the create user command from the console. | 290 | /// Handle the create user command from the console. |
291 | /// </summary> | 291 | /// </summary> |
@@ -296,7 +296,7 @@ namespace OpenSim.Services.UserAccountService | |||
296 | string lastName; | 296 | string lastName; |
297 | string password; | 297 | string password; |
298 | string email; | 298 | string email; |
299 | 299 | ||
300 | List<char> excluded = new List<char>(new char[]{' '}); | 300 | List<char> excluded = new List<char>(new char[]{' '}); |
301 | 301 | ||
302 | if (cmdparams.Length < 3) | 302 | if (cmdparams.Length < 3) |