From ba129fff471e50e671deabab62235d69144e341b Mon Sep 17 00:00:00 2001 From: Vadim ProductEngine Date: Fri, 12 Aug 2011 16:32:47 +0300 Subject: STORM-632 ADDITIONAL_FIX Use non-greedy regexp match to enable multiple ... clauses in a single textbox. --- indra/llui/llurlentry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'indra') diff --git a/indra/llui/llurlentry.cpp b/indra/llui/llurlentry.cpp index a37f026844..a9e8fbb4e4 100644 --- a/indra/llui/llurlentry.cpp +++ b/indra/llui/llurlentry.cpp @@ -1134,7 +1134,7 @@ std::string LLUrlEntryWorldMap::getLocation(const std::string &url) const // LLUrlEntryNoLink::LLUrlEntryNoLink() { - mPattern = boost::regex("[^<]*", + mPattern = boost::regex(".*?", boost::regex::perl|boost::regex::icase); } -- cgit v1.2.3