From 18c00c2ef05f3362f9ee7685f0f59498c457671b Mon Sep 17 00:00:00 2001 From: Jermolene Date: Fri, 1 Mar 2019 17:39:42 +0000 Subject: [PATCH] Don't allow $:/Import tiddler to be imported --- core/modules/upgraders/system.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/upgraders/system.js b/core/modules/upgraders/system.js index a5f9970da..fb6e1dd0c 100644 --- a/core/modules/upgraders/system.js +++ b/core/modules/upgraders/system.js @@ -13,7 +13,7 @@ Upgrader module that suppresses certain system tiddlers that shouldn't be import "use strict"; var DONT_IMPORT_LIST = ["$:/StoryList","$:/HistoryList"], - DONT_IMPORT_PREFIX_LIST = ["$:/temp/","$:/state/"], + DONT_IMPORT_PREFIX_LIST = ["$:/temp/","$:/state/","$:/Import"], WARN_IMPORT_PREFIX_LIST = ["$:/core/modules/"]; exports.upgrade = function(wiki,titles,tiddlers) {