From: Jan-Christoph Borchardt Date: Sun, 4 Aug 2013 14:27:17 +0000 (+0200) Subject: change long couldn't be determined string to question mark again X-Git-Tag: v6.0.0alpha2~314^2~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5a77b671479003f1181f47beabed13c87450ffab;p=nextcloud-server.git change long couldn't be determined string to question mark again --- diff --git a/lib/helper.php b/lib/helper.php index ca508e1d933..31f0f1698d5 100644 --- a/lib/helper.php +++ b/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";