diff options
author | Robin Appelman <icewind@owncloud.com> | 2013-02-07 23:59:14 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2013-02-07 23:59:14 +0100 |
commit | 5ef9d96d10c2984f0a5c19f299312492387b5aec (patch) | |
tree | dcddd5cd6b1371e6e1aef69e4c97ffe44259abb9 | |
parent | b67251b0ffbba5d52802ced8e1ff02f408be8cc7 (diff) | |
download | nextcloud-server-5ef9d96d10c2984f0a5c19f299312492387b5aec.tar.gz nextcloud-server-5ef9d96d10c2984f0a5c19f299312492387b5aec.zip |
Files: rename 'space' to 'storage' in upload.php
-rw-r--r-- | apps/files/ajax/upload.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 676612c0e42..07977f5ddf1 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -49,7 +49,7 @@ foreach ($files['size'] as $size) { $totalSize += $size; } if ($totalSize > \OC\Files\Filesystem::free_space($dir)) { - OCP\JSON::error(array('data' => array('message' => $l->t('Not enough space available'), + OCP\JSON::error(array('data' => array('message' => $l->t('Not enough storage available'), 'uploadMaxFilesize' => $maxUploadFilesize, 'maxHumanFilesize' => $maxHumanFilesize))); exit(); |