From 6108988f2b482d702e9f4ad2d1510f903c76286c Mon Sep 17 00:00:00 2001 From: till Date: Mon, 11 Feb 2008 19:49:48 +0000 Subject: * fixing bug i reported in #1484545 --- program/js/app.js | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'program/js/app.js') diff --git a/program/js/app.js b/program/js/app.js index 6504bca83..d6618564b 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1824,6 +1824,10 @@ function rcube_webmail() var eid = tinyMCE.getEditorId('_message'); // editor is a TinyMCE_Control object var editor = tinyMCE.getInstanceById(eid); + // if this is null, we should exit + if (editor == null) { + return false; + } var msgDoc = editor.getDoc(); var msgBody = msgDoc.body; -- cgit v1.2.3