From a6de27b3489731e865cf05ec7ecc343581392781 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Tue, 17 Jan 2012 15:21:56 +0000 Subject: [PATCH] We shouldn't use the source of images as their text in text/plain renderings --- js/macros/image.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/macros/image.js b/js/macros/image.js index 46f3e88cf..6968c51de 100644 --- a/js/macros/image.js +++ b/js/macros/image.js @@ -40,7 +40,7 @@ exports.macro = { }); } } else if (type === "text/plain") { - return params.text ? params.text : params.src; + return params.text ? params.text : ""; } } };