mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2026-04-23 07:11:30 +00:00
Fix sqlAllTitles wrongly including shadow tiddlers
This commit is contained in:
@@ -345,7 +345,7 @@ $tw.SqlFunctions = function(options) {
|
||||
/*
|
||||
Get all titles
|
||||
*/
|
||||
var statementAllTitles = self.db.prepare(`select title from titles order by title ${COLLATION_CLAUSE}`);
|
||||
var statementAllTitles = self.db.prepare(`select title from titles where plugintitle = '' order by title ${COLLATION_CLAUSE}`);
|
||||
this.sqlAllTitles = function() {
|
||||
let resultRows = [];
|
||||
while(statementAllTitles.step()) {
|
||||
|
||||
Reference in New Issue
Block a user