mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 08:55:56 +08:00
Multiple lines in welcome message use '\n' in the welcome message to
start a new line.
This commit is contained in:
@@ -126,6 +126,9 @@ namespace OpenSim.Services.LLLoginService
|
||||
if (accountService == string.Empty || authService == string.Empty)
|
||||
throw new Exception("LoginService is missing service specifications");
|
||||
|
||||
// replace newlines in welcome message
|
||||
m_WelcomeMessage = m_WelcomeMessage.Replace("\\n", "\n");
|
||||
|
||||
Object[] args = new Object[] { config };
|
||||
m_UserAccountService = ServerUtils.LoadPlugin<IUserAccountService>(accountService, args);
|
||||
m_GridUserService = ServerUtils.LoadPlugin<IGridUserService>(gridUserService, args);
|
||||
|
||||
Reference in New Issue
Block a user