From 46f7b7096450939fe03c95aa81ce06ae4bfca89d Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Mon, 28 Mar 2016 06:51:43 -0400 Subject: [PATCH] Enable reply/reply-all/forward buttons also in preview frame of message/rfc822 --- program/include/rcmail.php | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/program/include/rcmail.php b/program/include/rcmail.php index 0294392..1ff42b4 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -2245,12 +2245,12 @@ $size = $this->show_bytes((int)$part->d_parameters['size']); } else { - $size = $part->size; - if ($part->encoding == 'base64') { - $size = $size / 1.33; - } + $size = $part->size; + if ($part->encoding == 'base64') { + $size = $size / 1.33; + } - $size = '~' . $this->show_bytes($size); + $size = '~' . $this->show_bytes($size); } return $size; -- Gitblit v1.9.1