From 67eda0850d9e71a3b461e278730afe7b9ad9b9c3 Mon Sep 17 00:00:00 2001 From: thomascube Date: Tue, 11 Sep 2007 17:11:03 +0000 Subject: Fixed check for message content when composing --- program/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'program/js') diff --git a/program/js/app.js b/program/js/app.js index 5af98a256..7bc0fb310 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1691,7 +1691,7 @@ function rcube_webmail() } // check for empty body - if ((input_message.value == '' || (window.tinyMCE && tinyMCE.getContent() == '')) && !confirm(this.get_label('nobodywarning'))) + if ((input_message.value == '' && (!window.tinyMCE || tinyMCE.getContent() == '')) && !confirm(this.get_label('nobodywarning'))) { input_message.focus(); return false; -- cgit v1.2.3