summaryrefslogtreecommitdiff
path: root/indra/llui/llurlentry.cpp
diff options
context:
space:
mode:
authorMnikolenko ProductEngine <mnikolenko@productengine.com>2015-03-04 13:10:58 +0200
committerMnikolenko ProductEngine <mnikolenko@productengine.com>2015-03-04 13:10:58 +0200
commitf097c731d654b2fbcb73ee0bbf5b7263be109e23 (patch)
treed76ad684a1fa404306c3e1862a53274b685bbef6 /indra/llui/llurlentry.cpp
parent10390bc470a32c91a8938d9dcb59a8ffa24786b1 (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;
}