Fix handling of deprecated boolean value of reply_mode option (#1489052)

Conflicts:

	CHANGELOG
pull/88/head
Aleksander Machniak 11 years ago
parent 9824e212cc
commit 8b8462018a

@ -1,6 +1,8 @@
CHANGELOG Roundcube Webmail
===========================
- Fix handling of deprecated boolean value of reply_mode option (#1489052)
RELEASE 0.9.0
-------------
- Fix display of HTML entities in protected folder name (#1489042)

@ -562,7 +562,7 @@ function rcmail_prepare_message_body()
rcmail_write_forward_attachments();
}
// reply/edit/draft/forward
else if ($compose_mode && ($compose_mode != RCUBE_COMPOSE_REPLY || $RCMAIL->config->get('reply_mode') != -1)) {
else if ($compose_mode && ($compose_mode != RCUBE_COMPOSE_REPLY || intval($RCMAIL->config->get('reply_mode')) != -1)) {
$isHtml = rcmail_compose_editor_mode();
if (!empty($MESSAGE->parts)) {

Loading…
Cancel
Save