diff options
| author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-09-01 15:39:01 +0100 | 
|---|---|---|
| committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-09-01 15:39:01 +0100 | 
| commit | b0d1689516e60de80aca1ef56fdfc4815287a554 (patch) | |
| tree | 423cf7d0959cc08a40cc805896104744862cf085 /indra/newview | |
| parent | d0fefcd615394d65f9605b81a66db8f0202e0bdc (diff) | |
| parent | 9188a73301a942358d518e11cc6bf2235a2d7087 (diff) | |
merge: VWR-22280 FIXED Add "language" parameter to all XMLRPC call (Buy L$ and Buy Land).
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llcurrencyuimanager.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llfloaterbuyland.cpp | 1 | 
2 files changed, 3 insertions, 0 deletions
| diff --git a/indra/newview/llcurrencyuimanager.cpp b/indra/newview/llcurrencyuimanager.cpp index 654daa770e..2b92b228b3 100644 --- a/indra/newview/llcurrencyuimanager.cpp +++ b/indra/newview/llcurrencyuimanager.cpp @@ -164,6 +164,7 @@ void LLCurrencyUIManager::Impl::updateCurrencyInfo()  	keywordArgs.appendString(  		"secureSessionId",  		gAgent.getSecureSessionID().asString()); +	keywordArgs.appendString("language", LLUI::getLanguage());  	keywordArgs.appendInt("currencyBuy", mUserCurrencyBuy);  	keywordArgs.appendString("viewerChannel", gSavedSettings.getString("VersionChannelName"));  	keywordArgs.appendInt("viewerMajorVersion", LLVersionInfo::getMajor()); @@ -225,6 +226,7 @@ void LLCurrencyUIManager::Impl::startCurrencyBuy(const std::string& password)  	keywordArgs.appendString(  		"secureSessionId",  		gAgent.getSecureSessionID().asString()); +	keywordArgs.appendString("language", LLUI::getLanguage());  	keywordArgs.appendInt("currencyBuy", mUserCurrencyBuy);  	if (mUSDCurrencyEstimated)  	{ diff --git a/indra/newview/llfloaterbuyland.cpp b/indra/newview/llfloaterbuyland.cpp index 69824b3843..a5c62495fe 100644 --- a/indra/newview/llfloaterbuyland.cpp +++ b/indra/newview/llfloaterbuyland.cpp @@ -758,6 +758,7 @@ void LLFloaterBuyLandUI::runWebSitePrep(const std::string& password)  	keywordArgs.appendString(  		"secureSessionId",  		gAgent.getSecureSessionID().asString()); +	keywordArgs.appendString("language", LLUI::getLanguage());  	keywordArgs.appendString("levelId", newLevel);  	keywordArgs.appendInt("billableArea",  		mIsForGroup ? 0 : mParcelBillableArea); | 
