Aleksander Machniak
2014-11-28 f7f4672649ee6867175fa0f436408f75dcdf4841
Fix regression in rcmail::show_bytes() where unit was set to "[]" instead of "B"
1 files modified
2 ■■■ changed files
program/include/rcmail.php 2 ●●● patch | view | raw | blame | history
program/include/rcmail.php
@@ -2192,7 +2192,7 @@
        }
        else {
            $unit = 'B';
            $str  = sprintf('%d ', $bytes) . $this->gettext();
            $str  = sprintf('%d ', $bytes) . $this->gettext($unit);
        }
        return $str;