summaryrefslogtreecommitdiff
path: root/indra/newview/llfeaturemanager.cpp
diff options
context:
space:
mode:
authorMike Antipov <mantipov@productengine.com>2010-06-21 11:51:06 +0300
committerMike Antipov <mantipov@productengine.com>2010-06-21 11:51:06 +0300
commit26fe6e1df5371e889e9c0c5d0b6eba086ba1c7ac (patch)
tree57c181955f356118b0622ecc9c5c132d092b6a4c /indra/newview/llfeaturemanager.cpp
parentca816088999d130b2f36a287b1d33d02cea6ce30 (diff)
parentff2c3873817c6ab701483dbdda656af5e038f0a6 (diff)
Merge from default branch
--HG-- branch : product-engine
Diffstat (limited to 'indra/newview/llfeaturemanager.cpp')
-rw-r--r--indra/newview/llfeaturemanager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfeaturemanager.cpp b/indra/newview/llfeaturemanager.cpp
index 4fdb010162..f32fcd6b7f 100644
--- a/indra/newview/llfeaturemanager.cpp
+++ b/indra/newview/llfeaturemanager.cpp
@@ -496,11 +496,11 @@ private:
void fetch_table(std::string table)
{
- const std::string base = "http://viewer-settings.s3.amazonaws.com/";
+ const std::string base = gSavedSettings.getString("FeatureManagerHTTPTable");
const std::string filename = llformat(table.c_str(), LLVersionInfo::getVersion().c_str());
- const std::string url = base + filename;
+ const std::string url = base + "/" + filename;
const std::string path = gDirUtilp->getExpandedFilename(LL_PATH_USER_SETTINGS, filename);