- add empty line before signature

release-0.6
alecpl 16 years ago
parent 2b180b1cce
commit 87b7959f2b

@ -2094,6 +2094,8 @@ function rcube_webmail()
message = message.substring(0, p-1) + message.substring(p+sig.length, message.length); message = message.substring(0, p-1) + message.substring(p+sig.length, message.length);
} }
message = message.replace(/[\r\n]+$/, '');
// add the new signature string // add the new signature string
if (this.env.signatures && this.env.signatures[id]) if (this.env.signatures && this.env.signatures[id])
{ {
@ -2104,7 +2106,7 @@ function rcube_webmail()
} }
if (sig.indexOf('-- ')!=0) if (sig.indexOf('-- ')!=0)
sig = '-- \n'+sig; sig = '-- \n'+sig;
message += '\n'+sig; message += '\n\n'+sig;
} }
} }
else else

Loading…
Cancel
Save