From 6b6def872572bdf3e280fc169ea4f0abb484601d Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Wed, 10 Oct 2012 10:45:58 +0100 Subject: [PATCH] Fixed the view macro to fail silently if the target tiddler doesn't exist --- core/modules/macros/view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/macros/view.js b/core/modules/macros/view.js index 29acae3ee..31b4e9282 100644 --- a/core/modules/macros/view.js +++ b/core/modules/macros/view.js @@ -35,7 +35,7 @@ exports.executeMacro = function() { } else { switch(field) { case "text": - value = "The tiddler '" + this.tiddlerTitle + "' does not exist"; + value = ""; break; case "title": value = this.tiddlerTitle;