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

remotes/origin/stable6
Jan-Christoph Borchardt 12 years ago
parent ded02e771e
commit 5a77b67147
  1. 2
      lib/helper.php

@ -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";

Loading…
Cancel
Save