diff options
author | Gilbert Gonzales <gilbert@lindenlab.com> | 2013-07-22 15:49:42 -0700 |
---|---|---|
committer | Gilbert Gonzales <gilbert@lindenlab.com> | 2013-07-22 15:49:42 -0700 |
commit | ccedada68154205eaab78e4bb188f7bebaa1e686 (patch) | |
tree | 35e57503963e22d3155734b99be9b8375e88d671 /indra/newview/llfacebookconnect.cpp | |
parent | 827553f314d411c489bd99048181be5f5ff16d89 (diff) | |
parent | f44d24fafba7e8b9e8b5318602088a69d8da741c (diff) |
merge
Diffstat (limited to 'indra/newview/llfacebookconnect.cpp')
-rw-r--r-- | indra/newview/llfacebookconnect.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llfacebookconnect.cpp b/indra/newview/llfacebookconnect.cpp index 51abbdf82f..7c1e7b3b16 100644 --- a/indra/newview/llfacebookconnect.cpp +++ b/indra/newview/llfacebookconnect.cpp @@ -318,7 +318,10 @@ void LLFacebookConnect::openFacebookWeb(std::string url) { // Open the URL in an internal browser window without navigation UI LLFloaterWebContent::Params p; - p.url(url).show_chrome(false); + p.url(url).show_chrome(true); + p.url(url).allow_address_entry(false); + p.url(url).allow_back_forward_navigation(false); + p.url(url).trusted_content(true); LLFloaterReg::showInstance("fbc_web", p); //LLUrlAction::openURLExternal(url); |