From 497babe8e9a6ab82fee395a28ed12ff927e6a990 Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Wed, 11 Jun 2014 20:52:47 -0400 Subject: [PATCH] Fix Issue 1540: SLURLs not openable from chat? --- indra/newview/llpanelprofile.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/indra/newview/llpanelprofile.cpp b/indra/newview/llpanelprofile.cpp index 8237555ca..9172c2564 100644 --- a/indra/newview/llpanelprofile.cpp +++ b/indra/newview/llpanelprofile.cpp @@ -96,7 +96,9 @@ public: return false; } - const std::string verb = params[1].asString(); + std::string verb = params[1].asString(); + while (!verb.empty() && std::ispunct(verb.back())) + verb.pop_back(); if (verb == "about") { LLAvatarActions::showProfile(avatar_id);