summaryrefslogtreecommitdiff
path: root/indra/llui/llurlentry.cpp
diff options
context:
space:
mode:
authorMnikolenko ProductEngine <mnikolenko@productengine.com>2015-01-19 17:52:06 +0200
committerMnikolenko ProductEngine <mnikolenko@productengine.com>2015-01-19 17:52:06 +0200
commit427191118e65605e03a5369bdebf2c998e54f851 (patch)
tree5cc1449dbccd8ebff3220b95478751f3ed75330f /indra/llui/llurlentry.cpp
parent9db4fc7be298870ea289b9401c5f2726e4af6f0c (diff)
MAINT-4169 ShowGreyQueryInUrls debug setting was removed and the grey part of the link always appears.
Diffstat (limited to 'indra/llui/llurlentry.cpp')
-rwxr-xr-xindra/llui/llurlentry.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/indra/llui/llurlentry.cpp b/indra/llui/llurlentry.cpp
index acc8fdacfb..e18d7405ab 100755
--- a/indra/llui/llurlentry.cpp
+++ b/indra/llui/llurlentry.cpp
@@ -49,7 +49,6 @@ std::string localize_slapp_label(const std::string& url, const std::string& full
LLUrlEntryBase::LLUrlEntryBase()
{
- mGreyQuery = LLUI::sSettingGroups["config"]->getBOOL("ShowGreyQueryInUrls");
}
LLUrlEntryBase::~LLUrlEntryBase()
@@ -206,11 +205,8 @@ std::string LLUrlEntryBase::urlToGreyQuery(const std::string &url) const
LLUriParser up(unescapeUrl(url));
std::string query;
- if (mGreyQuery)
- {
- up.extractParts();
- up.glueSecond(query);
- }
+ up.extractParts();
+ up.glueSecond(query);
return query;
}