diff options
author | Lynx Linden <lynx@lindenlab.com> | 2010-01-11 15:05:01 +0000 |
---|---|---|
committer | Lynx Linden <lynx@lindenlab.com> | 2010-01-11 15:05:01 +0000 |
commit | 92b569a6079f55009dd9c291e9d7c56a00baf247 (patch) | |
tree | d7b97c575648d9c7a2132a9a64fdd6fcf0f503a3 /indra/llui/llurlentry.cpp | |
parent | 1d9591afbe5946f0e3a75aea917097f6a08d8ce5 (diff) |
EXT-3928: Escape group names in the profile panel URLs.
Diffstat (limited to 'indra/llui/llurlentry.cpp')
-rw-r--r-- | indra/llui/llurlentry.cpp | 2 |
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) |