diff options
author | leyla <leyla@leyla.com> | 2011-03-14 11:28:13 -0700 |
---|---|---|
committer | leyla <leyla@leyla.com> | 2011-03-14 11:28:13 -0700 |
commit | c762beed267115b7670e01219ccff4fc64bdca4c (patch) | |
tree | 8ee42a8defd3bae58759a9dd3517385d830c52b8 /indra/newview/llpanelprofile.cpp | |
parent | bc2aca863f5d27f551e48a2de8f879360a3a96ab (diff) | |
parent | 405a748746c8ea040fe0efeda54e58f378289795 (diff) |
Merge
Diffstat (limited to 'indra/newview/llpanelprofile.cpp')
-rwxr-xr-x | indra/newview/llpanelprofile.cpp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/indra/newview/llpanelprofile.cpp b/indra/newview/llpanelprofile.cpp index cead6c24cd..fd5c3362bb 100755 --- a/indra/newview/llpanelprofile.cpp +++ b/indra/newview/llpanelprofile.cpp @@ -35,13 +35,23 @@ #include "llpanelpicks.h" #include "lltabcontainer.h" #include "llviewercontrol.h" +#include "llviewernetwork.h" static const std::string PANEL_PICKS = "panel_picks"; static const std::string PANEL_PROFILE = "panel_profile"; std::string getProfileURL(const std::string& agent_name) { - std::string url = gSavedSettings.getString("WebProfileURL"); + std::string url; + + if (LLGridManager::getInstance()->isInProductionGrid()) + { + url = gSavedSettings.getString("WebProfileURL"); + } + else + { + url = gSavedSettings.getString("WebProfileNonProductionURL"); + } LLSD subs; subs["AGENT_NAME"] = agent_name; url = LLWeb::expandURLSubstitutions(url,subs); |