From 5a77b671479003f1181f47beabed13c87450ffab Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sun, 4 Aug 2013 16:27:17 +0200 Subject: [PATCH] change long couldn't be determined string to question mark again --- lib/helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; -- 2.39.5