diff options
author | Merov Linden <merov@lindenlab.com> | 2013-07-30 13:02:29 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2013-07-30 13:02:29 -0700 |
commit | 85c8c1daf05e09c2b8524c6b418378063467f597 (patch) | |
tree | 6b2cdb26239358b2cd09e43fe0a74ffdd6ae8225 /indra/newview/llfacebookconnect.cpp | |
parent | bdd8005721c4030c91059a5b54c255648351a2f7 (diff) |
ACME-757 : Change the hard coded url to fbc service (still a hack)
Diffstat (limited to 'indra/newview/llfacebookconnect.cpp')
-rw-r--r-- | indra/newview/llfacebookconnect.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llfacebookconnect.cpp b/indra/newview/llfacebookconnect.cpp index 8c75d0efc6..29187bcabc 100644 --- a/indra/newview/llfacebookconnect.cpp +++ b/indra/newview/llfacebookconnect.cpp @@ -334,7 +334,8 @@ void LLFacebookConnect::openFacebookWeb(std::string url) std::string LLFacebookConnect::getFacebookConnectURL(const std::string& route) { //static std::string sFacebookConnectUrl = gAgent.getRegion()->getCapability("FacebookConnect"); - static std::string sFacebookConnectUrl = "https://pdp15.lindenlab.com/fbc/agent/" + gAgentID.asString(); // TEMPORARY HACK FOR FB DEMO - Cho + static std::string sFacebookConnectUrl = "http://int.fbc.aditi.lindenlab.com/agent/" + gAgentID.asString(); // TEMPORARY HACK FOR FB DEMO - Cho + std::string url = sFacebookConnectUrl + route; llinfos << url << llendl; return url; |