summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-04-02 10:15:51 +0200
committerAleksander Machniak <alec@alec.pl>2013-04-02 10:17:43 +0200
commit4dd9bb4671bdcbdfed40ffea48b67204ac0de6df (patch)
treebd47100e76fd2cfa63e83c86d5b0644a3f807dd6
parentd22ef3f480329a8962c358a35f08602286d20913 (diff)
Fix blockquote width in sent mail (#1489031)
-rw-r--r--CHANGELOG1
-rw-r--r--program/steps/mail/sendmail.inc2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 7940e5a53..8686823fb 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
+- Fix blockquote width in sent mail (#1489031)
- Fix keyboard events on list widgets in Internet Explorer (#1489025)
RELEASE 0.9-rc2
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);
}