diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-08-16 01:05:29 -0700 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-08-16 01:05:29 -0700 |
commit | 1e8849b04eebf06a7c86675e4d96c38d8f9c95b2 (patch) | |
tree | a79e36b9b3d24f93ea0051a6f2fee576039a9455 /lib | |
parent | c196985ea352637f540c6ead6519a3e13d7afe4a (diff) | |
parent | 0aa7dc9b893ffa5ac8a1f3a3959ad3de2ce6178c (diff) | |
download | nextcloud-server-1e8849b04eebf06a7c86675e4d96c38d8f9c95b2.tar.gz nextcloud-server-1e8849b04eebf06a7c86675e4d96c38d8f9c95b2.zip |
Merge pull request #4314 from owncloud/css-fixes
Design fixes
Diffstat (limited to 'lib')
-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"; |