diff options
| author | Leyla Farazha <leyla@lindenlab.com> | 2007-11-20 19:15:09 +0000 | 
|---|---|---|
| committer | Leyla Farazha <leyla@lindenlab.com> | 2007-11-20 19:15:09 +0000 | 
| commit | 5356b917545d43df5537128245ee5b786b705b90 (patch) | |
| tree | 3e0b4e30c95e5ad5b967380052cf57e7531cb745 /indra | |
| parent | 9a85f0d0bd9fca0f4d9a107fe736eb0fadd08d6b (diff) | |
patch to fix grid selection problem, now resetting URIs every time
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llstartup.cpp | 6 | 
1 files changed, 2 insertions, 4 deletions
| diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index 267b2340d0..c43c4e8685 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -930,10 +930,8 @@ BOOL idle_startup()  			gSavedSettings.setBOOL("UseDebugMenus", TRUE);  			requested_options.push_back("god-connect");  		} -		if (sAuthUris.empty()) -		{ -			sAuthUris = LLAppViewer::instance()->getLoginURIs(); -		} +		LLAppViewer::instance()->getLoginURIs(); +		sAuthUris = LLAppViewer::instance()->getLoginURIs();  		sAuthUriNum = 0;  		auth_method = "login_to_simulator";  		auth_desc = "Logging in.  "; | 
