Fix #2243 (whitespaces are trimmed also for normal search)
This commit is contained in:
parent
ae1f515446
commit
c095ee3c14
|
@ -1069,7 +1069,7 @@ def reconnect():
|
|||
def search():
|
||||
term = request.args.get("query")
|
||||
if term:
|
||||
return redirect(url_for('web.books_list', data="search", sort_param='stored', query=term))
|
||||
return redirect(url_for('web.books_list', data="search", sort_param='stored', query=term.strip()))
|
||||
else:
|
||||
return render_title_template('search.html',
|
||||
searchterm="",
|
||||
|
|
Loading…
Reference in New Issue
Block a user