Highlight on (nick/muc_highlight_words) that contains a space too. Fixes #3624.

This commit is contained in:
Jean-Marie Traissard 2007-12-17 21:54:18 +00:00
parent c53050c0a4
commit ddbcfcd7a2
1 changed files with 7 additions and 0 deletions

View File

@ -813,6 +813,13 @@ class GroupchatControl(ChatControlBase):
return False
else: # Special word == word, no char after in word
return True
for special_word in special_words:
if special_word.find(' ') > -1:
# There is a space in this special word, do a global search
# without splitting by words as previously
# We don't search this in all cases so we don't loose time
if text.find(special_word) > -1:
return True
return False
def set_subject(self, subject):