Fix problem with search term being filtered from search results

Some leftover code meant that tiddlers titled with the precise search
term were excluded from the results.
print-window-tiddler
Jeremy Ruston 2013-08-03 09:28:51 +01:00
rodzic 2179d3fa70
commit 799647e38b
1 zmienionych plików z 1 dodań i 2 usunięć

Wyświetl plik

@ -19,8 +19,7 @@ exports.search = function(source,operator,options) {
var invert = operator.prefix === "!";
return options.wiki.search(operator.operand,{
titles: source,
invert: invert,
exclude: [operator.operand]
invert: invert
});
};