Merge branch 'stable'

This commit is contained in:
Takeshi KOMIYA 2018-01-15 10:15:06 +09:00
commit 0cd0f82492
2 changed files with 4 additions and 1 deletions

View File

@ -166,6 +166,9 @@ Features added
Bugs fixed
----------
* #1922: html search: Upper characters problem in French
Testing
--------

View File

@ -207,4 +207,4 @@ class SearchFrench(SearchLanguage):
self.stemmer = snowballstemmer.stemmer('french')
def stem(self, word):
return self.stemmer.stemWord(word)
return self.stemmer.stemWord(word.lower())