diff options
author | James Cook <james@lindenlab.com> | 2010-03-02 15:13:56 -0800 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2010-03-02 15:13:56 -0800 |
commit | b7d3d80dddba80268c72e406877701cbaa4856a3 (patch) | |
tree | 11724278276c771c4264a5cfce3f1118da0915b0 /indra | |
parent | fe8d015851f74d375776791aa1adec204799037b (diff) |
DEV-46231 "You paid" shows last name Resident if amount is L$1
Bad regex
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llviewermessage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index 0815ce486d..6a131082da 100644 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -4495,7 +4495,7 @@ static void show_money_balance_notification(const std::string& desc) // <name> paid you L$<amount>. static const boost::regex paid_you("(.+) paid you L\\$(\\d+)\\."); // You paid <name> L$<amount> [for <reason>]. - static const boost::regex you_paid("You paid (.*) L\\$(\\d+)(.+)\\."); + static const boost::regex you_paid("You paid (.*) L\\$(\\d+)(.*)\\."); if (boost::regex_match(desc, match, paid_you_for)) { |