Index: includes/functions.php =================================================================== --- includes/functions.php (Revision 9422) +++ includes/functions.php (Arbeitskopie) @@ -236,6 +236,11 @@ { global $user; + if ($bytes >= pow(2, 30)) + { + return ($add_size_lang) ? round($bytes / 1024 / 1024 / 1024, 2) . ' ' . $user->lang['GIB'] : round($bytes / 1024 / 1024 / 1024, 2); + } + if ($bytes >= pow(2, 20)) { return ($add_size_lang) ? round($bytes / 1024 / 1024, 2) . ' ' . $user->lang['MIB'] : round($bytes / 1024 / 1024, 2); Index: language/en/common.php =================================================================== --- language/en/common.php (Revision 9422) +++ language/en/common.php (Arbeitskopie) @@ -228,6 +228,7 @@ 'FTP_USERNAME_EXPLAIN' => 'Username used to connect to your server.', 'GENERAL_ERROR' => 'General Error', + 'GIB' => 'GiB', 'GO' => 'Go', 'GOTO_PAGE' => 'Go to page', 'GROUP' => 'Group',