diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-04-02 10:15:51 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-04-02 10:17:43 +0200 |
commit | 4dd9bb4671bdcbdfed40ffea48b67204ac0de6df (patch) | |
tree | bd47100e76fd2cfa63e83c86d5b0644a3f807dd6 /program | |
parent | d22ef3f480329a8962c358a35f08602286d20913 (diff) |
Fix blockquote width in sent mail (#1489031)
Diffstat (limited to 'program')
-rw-r--r-- | program/steps/mail/sendmail.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/sendmail.inc b/program/steps/mail/sendmail.inc index f24f20789..2f96e930f 100644 --- a/program/steps/mail/sendmail.inc +++ b/program/steps/mail/sendmail.inc @@ -493,7 +493,7 @@ if (!$savedraft) { $message_body = preg_replace('/\s*id="_rc_sig"/', '', $message_body); // add inline css for blockquotes - $bstyle = 'padding-left:5px; border-left:#1010ff 2px solid; margin-left:5px; width:100%'; + $bstyle = 'padding-left:5px; border-left:#1010ff 2px solid; margin-left:5px'; $message_body = preg_replace('/<blockquote>/', '<blockquote type="cite" style="'.$bstyle.'">', $message_body); } |