diff options
| author | Cho <cho@lindenlab.com> | 2013-04-05 21:27:20 +0100 | 
|---|---|---|
| committer | Cho <cho@lindenlab.com> | 2013-04-05 21:27:20 +0100 | 
| commit | 2465634bf77b7c471106855c347b611bcd8ef2ab (patch) | |
| tree | 755879f7e63ee7c77e7f3770bd8a86680ebfc0de /indra | |
| parent | 10dba6b20148868ab630e53ac9aec67d2ed01cc1 (diff) | |
changed connect to use POST
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llpanelpeople.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/llpanelpeople.cpp b/indra/newview/llpanelpeople.cpp index 4bcd146ad2..29a92525de 100644 --- a/indra/newview/llpanelpeople.cpp +++ b/indra/newview/llpanelpeople.cpp @@ -1750,7 +1750,7 @@ void LLPanelPeople::connectToFacebook(const std::string& auth_code)  	LLSD body;  	body["code"] = auth_code;  	body["redirect_uri"] = FBC_SERVICES_REDIRECT_URI; -	LLHTTPClient::put(FBC_SERVICES_URL + "/agent/" + gAgentID.asString() + "/fbc", body, new FacebookConnectResponder(this)); +	LLHTTPClient::post(FBC_SERVICES_URL + "/agent/" + gAgentID.asString() + "/fbc", body, new FacebookConnectResponder(this));  }  void LLPanelPeople::disconnectFromFacebook() | 
