diff options
| author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-05-29 11:30:07 +0300 | 
|---|---|---|
| committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-05-29 11:30:07 +0300 | 
| commit | e62444c0e73e6d89ab6a11e1e03047c83fe756f9 (patch) | |
| tree | 4f224ef53956af023df60ded3fef33506ed0dbac | |
| parent | fe49c1e8a5b3ebbb8fddeb23d32d4de68558fa37 (diff) | |
MAINT-7443 FIXED Able to Block a user with Lastname Linden
| -rw-r--r-- | indra/newview/llmutelist.cpp | 7 | 
1 files changed, 5 insertions, 2 deletions
diff --git a/indra/newview/llmutelist.cpp b/indra/newview/llmutelist.cpp index 5b53a05274..bf1716e18c 100644 --- a/indra/newview/llmutelist.cpp +++ b/indra/newview/llmutelist.cpp @@ -48,6 +48,7 @@  #include <boost/tokenizer.hpp>  #include <boost/bind.hpp> +#include <boost/algorithm/string/replace.hpp>  #include "lldispatcher.h"  #include "llxfermanager.h" @@ -180,9 +181,10 @@ LLMuteList::~LLMuteList()  BOOL LLMuteList::isLinden(const std::string& name) const  { +	std::string username = boost::replace_all_copy(name, ".", " ");  	typedef boost::tokenizer<boost::char_separator<char> > tokenizer;  	boost::char_separator<char> sep(" "); -	tokenizer tokens(name, sep); +	tokenizer tokens(username, sep);  	tokenizer::iterator token_iter = tokens.begin();  	if (token_iter == tokens.end()) return FALSE; @@ -190,7 +192,8 @@ BOOL LLMuteList::isLinden(const std::string& name) const  	if (token_iter == tokens.end()) return FALSE;  	std::string last_name = *token_iter; -	return last_name == "Linden"; +	LLStringUtil::toLower(last_name); +	return last_name == "linden";  }  static LLVOAvatar* find_avatar(const LLUUID& id)  | 
