summaryrefslogtreecommitdiff
path: root/indra/newview/llpanelprofile.cpp
diff options
context:
space:
mode:
authorAnsariel <none@none>2014-11-18 12:15:30 +0100
committerAnsariel <none@none>2014-11-18 12:15:30 +0100
commit21a36e2c5b9dc98a1eca4a00088ea89f914d15b4 (patch)
tree4bc6bfc16c90bf157cc9211c9fd22538a7e2240c /indra/newview/llpanelprofile.cpp
parent2301cf800f40101baed7a5936683d0b1e4968be1 (diff)
MAINT-4677: Unexpected behaviour when blocking objects with a / in their name when using compact chat view
Diffstat (limited to 'indra/newview/llpanelprofile.cpp')
-rwxr-xr-xindra/newview/llpanelprofile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llpanelprofile.cpp b/indra/newview/llpanelprofile.cpp
index f91c4110c0..e795e7eedb 100755
--- a/indra/newview/llpanelprofile.cpp
+++ b/indra/newview/llpanelprofile.cpp
@@ -168,7 +168,7 @@ public:
{
if (params.size() > 2)
{
- const std::string object_name = params[2].asString();
+ const std::string object_name = LLURI::unescape(params[2].asString());
LLMute mute(avatar_id, object_name, LLMute::OBJECT);
LLMuteList::getInstance()->add(mute);
LLPanelBlockedList::showPanelAndSelect(mute.mID);