summaryrefslogtreecommitdiff
path: root/roundcubemail/program
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-12-04 14:41:25 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-12-04 14:41:25 +0000
commitd59de046d205e33d02daade5a4ce8cdf56366fed (patch)
tree72ee5f3b74dcb5d781118f2097aaf2010ee7182b /roundcubemail/program
parent3a8be7f27a7110e861abbaa68505a9c69669c8f8 (diff)
- fix unintentional adding signatures with html mode and autoaddsignature=never (#1486335)
git-svn-id: https://svn.roundcube.net/trunk@3164 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
-rw-r--r--roundcubemail/program/js/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index 4c8daeed2..c1f332a7c 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/program/js/app.js
@@ -2374,7 +2374,7 @@ function rcube_webmail()
// move cursor before the signature
this.set_caret_pos(input_message.get(0), cursor_pos);
}
- else if (is_html && this.env.signatures) { // html
+ else if (is_html && show_sig && this.env.signatures) { // html
var editor = tinyMCE.get(this.env.composebody);
var sigElem = editor.dom.get('_rc_sig');