diff options
author | nebadon | 2011-11-05 02:42:21 -0700 |
---|---|---|
committer | nebadon | 2011-11-05 02:42:21 -0700 |
commit | 4797ed6eddea8a0b2adec14825e8129e38b08c98 (patch) | |
tree | a6719819287bd25b7ec7cd5dc5f3220b5d1dd749 /OpenSim/Services/LLLoginService | |
parent | add Mana Janus and SpotOn3D to contributors.txt last patch was courtesy (diff) | |
download | opensim-SC_OLD-4797ed6eddea8a0b2adec14825e8129e38b08c98.zip opensim-SC_OLD-4797ed6eddea8a0b2adec14825e8129e38b08c98.tar.gz opensim-SC_OLD-4797ed6eddea8a0b2adec14825e8129e38b08c98.tar.bz2 opensim-SC_OLD-4797ed6eddea8a0b2adec14825e8129e38b08c98.tar.xz |
Multiple lines in welcome message use '\n' in the welcome message to
start a new line.
Diffstat (limited to 'OpenSim/Services/LLLoginService')
-rw-r--r-- | OpenSim/Services/LLLoginService/LLLoginService.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs index 6fec276..8578c59 100644 --- a/OpenSim/Services/LLLoginService/LLLoginService.cs +++ b/OpenSim/Services/LLLoginService/LLLoginService.cs | |||
@@ -126,6 +126,9 @@ namespace OpenSim.Services.LLLoginService | |||
126 | if (accountService == string.Empty || authService == string.Empty) | 126 | if (accountService == string.Empty || authService == string.Empty) |
127 | throw new Exception("LoginService is missing service specifications"); | 127 | throw new Exception("LoginService is missing service specifications"); |
128 | 128 | ||
129 | // replace newlines in welcome message | ||
130 | m_WelcomeMessage = m_WelcomeMessage.Replace("\\n", "\n"); | ||
131 | |||
129 | Object[] args = new Object[] { config }; | 132 | Object[] args = new Object[] { config }; |
130 | m_UserAccountService = ServerUtils.LoadPlugin<IUserAccountService>(accountService, args); | 133 | m_UserAccountService = ServerUtils.LoadPlugin<IUserAccountService>(accountService, args); |
131 | m_GridUserService = ServerUtils.LoadPlugin<IGridUserService>(gridUserService, args); | 134 | m_GridUserService = ServerUtils.LoadPlugin<IGridUserService>(gridUserService, args); |