Pure numbers are returned as bytes right away

remotes/origin/poc-doctrine-migrations
Thomas Müller 11 years ago
parent 15d134124b
commit 4659927d7a
  1. 3
      lib/private/helper.php

@ -394,6 +394,9 @@ class OC_Helper {
*/
public static function computerFileSize($str) {
$str = strtolower($str);
if (is_numeric($str)) {
return $str;
}
$bytes_array = array(
'b' => 1,

Loading…
Cancel
Save