Fix admin Search

This commit is contained in:
RoiEX
2017-03-05 11:38:40 +01:00
parent e85e35cf0c
commit c517733e34

View File

@@ -73,7 +73,7 @@ define('admin/modules/search', ['mousetrap'], function (mousetrap) {
if (!selected.length) {
selected = menu.find('li.result > a').first().attr('href');
}
var href = selected || config.relative_path + '/search/' + input.val();
var href = selected || config.relative_path + '/search?in=titlesposts&term=' + input.val();
ajaxify.go(href.replace(/^\//, ''));
@@ -140,7 +140,7 @@ define('admin/modules/search', ['mousetrap'], function (mousetrap) {
menu.find('.search-forum')
.not('.divider')
.find('a')
.attr('href', config.relative_path + '/search/' + value)
.attr('href', config.relative_path + '/search?in=titlesposts&term=' + value)
.find('strong')
.html(value);
} else {