summaryrefslogtreecommitdiff
path: root/indra/llui/llurlentry.cpp
diff options
context:
space:
mode:
authorLynx Linden <lynx@lindenlab.com>2010-01-11 15:05:01 +0000
committerLynx Linden <lynx@lindenlab.com>2010-01-11 15:05:01 +0000
commit92b569a6079f55009dd9c291e9d7c56a00baf247 (patch)
treed7b97c575648d9c7a2132a9a64fdd6fcf0f503a3 /indra/llui/llurlentry.cpp
parent1d9591afbe5946f0e3a75aea917097f6a08d8ce5 (diff)
EXT-3928: Escape group names in the profile panel URLs.
Diffstat (limited to 'indra/llui/llurlentry.cpp')
-rw-r--r--indra/llui/llurlentry.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llurlentry.cpp b/indra/llui/llurlentry.cpp
index f7528bc62a..1b6dd1b264 100644
--- a/indra/llui/llurlentry.cpp
+++ b/indra/llui/llurlentry.cpp
@@ -101,7 +101,7 @@ std::string LLUrlEntryBase::getLabelFromWikiLink(const std::string &url)
{
start++;
}
- return url.substr(start, url.size()-start-1);
+ return unescapeUrl(url.substr(start, url.size()-start-1));
}
std::string LLUrlEntryBase::getUrlFromWikiLink(const std::string &string)