diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-08-04 16:27:17 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-08-04 16:27:17 +0200 |
commit | 5a77b671479003f1181f47beabed13c87450ffab (patch) | |
tree | 80ca12f6299ffebda5177a80f052229e00e370ec /lib/helper.php | |
parent | ded02e771e90227d7e7d204a8c24ced53f1ac3b0 (diff) | |
download | nextcloud-server-5a77b671479003f1181f47beabed13c87450ffab.tar.gz nextcloud-server-5a77b671479003f1181f47beabed13c87450ffab.zip |
change long couldn't be determined string to question mark again
Diffstat (limited to 'lib/helper.php')
-rw-r--r-- | lib/helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
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"; |