diff --git a/include/Photo.php b/include/Photo.php index 0adc55258b..785601c7e4 100644 --- a/include/Photo.php +++ b/include/Photo.php @@ -1014,14 +1014,3 @@ function store_photo($a, $uid, $imagedata = "", $url = "") { return($image); } -function formatBytes($bytes, $precision = 2) { - $units = array('B', 'KB', 'MB', 'GB', 'TB'); - - $bytes = max($bytes, 0); - $pow = floor(($bytes ? log($bytes) : 0) / log(1024)); - $pow = min($pow, count($units) - 1); - - $bytes /= pow(1024, $pow); - - return round($bytes, $precision) . ' ' . $units[$pow]; -} diff --git a/include/text.php b/include/text.php index 5c6ab588f1..829e37c2ce 100644 --- a/include/text.php +++ b/include/text.php @@ -2282,3 +2282,15 @@ function deindent($text, $chr="[\t ]", $count=NULL) { return implode("\n", $lines); } + +function formatBytes($bytes, $precision = 2) { + $units = array('B', 'KB', 'MB', 'GB', 'TB'); + + $bytes = max($bytes, 0); + $pow = floor(($bytes ? log($bytes) : 0) / log(1024)); + $pow = min($pow, count($units) - 1); + + $bytes /= pow(1024, $pow); + + return round($bytes, $precision) . ' ' . $units[$pow]; +}