change long couldn't be determined string to question mark again

remotes/origin/stable6
Jan-Christoph Borchardt 2013-08-04 16:27:17 +07:00
parent ded02e771e
commit 5a77b67147
1 changed files with 1 additions and 1 deletions

@ -232,7 +232,7 @@ class OC_Helper {
public static function humanFileSize( $bytes ) {
if( $bytes < 0 ) {
$l = OC_L10N::get('lib');
return $l->t("couldn't be determined");
return "?";
}
if( $bytes < 1024 ) {
return "$bytes B";