Append * also for searches with umlaut or other utf8 chars.

This commit is contained in:
Martin Edenhofer 2017-08-23 17:13:32 +02:00
parent d6bc129af4
commit 81c6aa0af0

View file

@ -199,7 +199,7 @@ return search result
end
# add * on simple query search
if query && query =~ /^\w+$/
if query && query =~ /^[[:alpha:]]+$/
query += '*'
end