diff options
| -rw-r--r-- | indra/newview/llappviewer.cpp | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index cbd996f909..061ef7268e 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -2467,6 +2467,14 @@ bool LLAppViewer::initConfiguration()  		}  	} +	// If automatic login from command line with --login switch +	// init StartSLURL location. In interactive login, LLPanelLogin +	// will take care of it. +	if ((clp.hasOption("login") || clp.hasOption("autologin")) && !clp.hasOption("url") && !clp.hasOption("slurl")) +	{ +		LLStartUp::setStartSLURL(LLSLURL(gSavedSettings.getString("LoginLocation"))); +	} +  	if (!gSavedSettings.getBOOL("AllowMultipleViewers"))  	{  	    // | 
