diff options
author | Vladimir Pchelko <pchelko@productengine.com> | 2010-06-10 16:32:41 +0300 |
---|---|---|
committer | Vladimir Pchelko <pchelko@productengine.com> | 2010-06-10 16:32:41 +0300 |
commit | ac9543be9eb6e3c4b929142d0d2758ebf1885ac8 (patch) | |
tree | 0b96cbeef53c4e02a9fe5a7ee36eacbb037664c0 /indra/newview/llchathistory.cpp | |
parent | 62c82eef49006f6f94ca2f9ca10b5abc4612a61f (diff) |
EXT-6654 FIXED Using escaped (LLURI::escape()) text for objects link.
reviewed by Vadim Savchuk at https://codereview.productengine.com/secondlife/r/543/
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llchathistory.cpp')
-rw-r--r-- | indra/newview/llchathistory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llchathistory.cpp b/indra/newview/llchathistory.cpp index 0bd03571da..961969a5c5 100644 --- a/indra/newview/llchathistory.cpp +++ b/indra/newview/llchathistory.cpp @@ -667,7 +667,7 @@ void LLChatHistory::appendMessage(const LLChat& chat, const LLSD &args, const LL // (don't let object names with hyperlinks override our objectim Url) LLStyle::Params link_params(style_params); link_params.color.control = "HTMLLinkColor"; - link_params.link_href = url; + link_params.link_href = LLURI::escape(url); mEditor->appendText("<nolink>" + chat.mFromName + "</nolink>" + delimiter, false, link_params); } |