diff options
Diffstat (limited to 'OpenSim/Services')
-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); |