summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2010-03-07 08:14:41 +0000
committeralecpl <alec@alec.pl>2010-03-07 08:14:41 +0000
commitedaf6a6cef74448a7120b4fff0bf1c0c2f4edac0 (patch)
tree8b24e3d9de767db85c44b7ad1026a808231e5ba1 /program
parent6611b415aee7cd41afbbbf88e90f920de0a9a520 (diff)
- Last commit fix
Diffstat (limited to 'program')
-rw-r--r--program/js/app.js12
1 files changed, 7 insertions, 5 deletions
diff --git a/program/js/app.js b/program/js/app.js
index e779a9866..754954afd 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -2331,9 +2331,9 @@ function rcube_webmail()
// remove the 'old' signature
if (show_sig && this.env.identity && this.env.signatures && this.env.signatures[this.env.identity]) {
sig = this.env.signatures[this.env.identity].is_html ? this.env.signatures[this.env.identity].plain_text : this.env.signatures[this.env.identity].text;
-
sig = sig.replace(/\r\n/, '\n');
- if (!sig.match(/^--[ -]\n/)
+
+ if (!sig.match(/^--[ -]\n/))
sig = sig_separator + '\n' + sig;
p = this.env.sig_above ? message.indexOf(sig) : message.lastIndexOf(sig);
@@ -2343,7 +2343,9 @@ function rcube_webmail()
// add the new signature string
if (show_sig && this.env.signatures && this.env.signatures[id]) {
sig = this.env.signatures[id]['is_html'] ? this.env.signatures[id]['plain_text'] : this.env.signatures[id]['text'];
- if (!sig.match(/^--[ -]\n/)
+ sig = sig.replace(/\r\n/, '\n');
+
+ if (!sig.match(/^--[ -]\n/))
sig = sig_separator + '\n' + sig;
if (this.env.sig_above) {
@@ -2412,12 +2414,12 @@ function rcube_webmail()
if (this.env.signatures[id]) {
if (this.env.signatures[id].is_html) {
sig = this.env.signatures[id].text;
- if (!this.env.signatures[id].plain_text.match(/^--[ -]\n/)
+ if (!this.env.signatures[id].plain_text.match(/^--[ -]\r?\n/))
sig = sig_separator + '<br />' + sig;
}
else {
sig = this.env.signatures[id].text;
- if (!sig.match(/^--[ -]\n/)
+ if (!sig.match(/^--[ -]\r?\n/))
sig = sig_separator + '\n' + sig;
sig = '<pre>' + sig + '</pre>';
}