mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-06 07:40:43 +01:00
fix typo in search
This commit is contained in:
@@ -44,7 +44,7 @@ define('forum/search', ['search'], function(searchModule) {
|
||||
in: form.find('#search-in').val()
|
||||
};
|
||||
|
||||
if (searchData.in === 'posts' || searchData.in === 'titlespost' || searchData.in === 'titles') {
|
||||
if (searchData.in === 'posts' || searchData.in === 'titlesposts' || searchData.in === 'titles') {
|
||||
searchData.by = form.find('#posted-by-user').val();
|
||||
searchData.categories = form.find('#posted-in-categories').val();
|
||||
searchData.searchChildren = form.find('#search-children').is(':checked');
|
||||
|
||||
Reference in New Issue
Block a user