aboutsummaryrefslogtreecommitdiffstats
path: root/lib/helper.php
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-08-04 16:27:17 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-08-04 16:27:17 +0200
commit5a77b671479003f1181f47beabed13c87450ffab (patch)
tree80ca12f6299ffebda5177a80f052229e00e370ec /lib/helper.php
parentded02e771e90227d7e7d204a8c24ced53f1ac3b0 (diff)
downloadnextcloud-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.php2
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";