diff --git a/core/modules/filters/list.js b/core/modules/filters/list.js index b7e396c3c..f64c8fe7b 100644 --- a/core/modules/filters/list.js +++ b/core/modules/filters/list.js @@ -18,7 +18,7 @@ Export our filter function exports.list = function(source,operator,options) { var results = [], tr = $tw.utils.parseTextReference(operator.operand), - list = options.wiki.getTiddlerList(tr.title,tr.field,tr.index); + list = options.wiki.getTiddlerList(tr.title || options.currTiddlerTitle,tr.field,tr.index); function checkTiddler(title) { var match = list.indexOf(title) !== -1; if(operator.prefix === "!") {