diff options
author | Oz Linden <oz@lindenlab.com> | 2015-04-14 05:39:36 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2015-04-14 05:39:36 -0400 |
commit | 034fb74d05d25582ebdc086414cb0307b1e2e8e2 (patch) | |
tree | d1c5e85e0f35782517921e1d80269cb23a511e97 /indra/llui/llurlregistry.cpp | |
parent | bef5a95cafdf6e20a243f4091b4fbcf426fb529b (diff) | |
parent | 5a282abe184323643f1a88f2aba662648059b4e2 (diff) |
merge changes for STORM-2113
Diffstat (limited to 'indra/llui/llurlregistry.cpp')
-rwxr-xr-x | indra/llui/llurlregistry.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/indra/llui/llurlregistry.cpp b/indra/llui/llurlregistry.cpp index 4fc79964e2..1143574968 100755 --- a/indra/llui/llurlregistry.cpp +++ b/indra/llui/llurlregistry.cpp @@ -220,9 +220,12 @@ bool LLUrlRegistry::findUrl(const std::string &text, LLUrlMatch &match, const LL // fill in the LLUrlMatch object and return it std::string url = text.substr(match_start, match_end - match_start + 1); - LLUriParser up(url); - up.normalize(); - url = up.normalizedUri(); + if (match_entry == mUrlEntryTrusted) + { + LLUriParser up(url); + up.normalize(); + url = up.normalizedUri(); + } match.setValues(match_start, match_end, match_entry->getUrl(url), @@ -255,7 +258,7 @@ bool LLUrlRegistry::findUrl(const LLWString &text, LLUrlMatch &match, const LLUr // character encoding, so we need to update the start // and end values to be correct for the wide string. LLWString wurl = utf8str_to_wstring(match.getUrl()); - S32 start = text.find(wurl); + size_t start = text.find(wurl); if (start == std::string::npos) { return false; |