diff --git a/core/modules/wiki.js b/core/modules/wiki.js index afed9834b..ac7c89a7b 100644 --- a/core/modules/wiki.js +++ b/core/modules/wiki.js @@ -216,7 +216,7 @@ exports.getTiddlers = function(sortField,excludeTag) { sortField = sortField || "title"; var tiddlers = [], t, titles = []; for(t in this.tiddlers) { - if(!this.tiddlers[t].isShadow) { + if($tw.utils.hop(this.tiddlers,t) && !this.tiddlers[t].isShadow) { tiddlers.push(this.tiddlers[t]); } }