Fix regression in rcmail::show_bytes() where unit was set to "[]" instead of "B"

pull/251/head
Aleksander Machniak 10 years ago
parent 61ca7956cc
commit f7f4672649

@ -2192,7 +2192,7 @@ class rcmail extends rcube
}
else {
$unit = 'B';
$str = sprintf('%d ', $bytes) . $this->gettext();
$str = sprintf('%d ', $bytes) . $this->gettext($unit);
}
return $str;

Loading…
Cancel
Save