Fix variable name

remotes/origin/ldap_group_count
Pellaeon Lin 11 years ago
parent 4726a2021b
commit 19675c2c9d
  1. 4
      apps/files/js/file-upload.js

@ -246,8 +246,8 @@ $(document).ready(function() {
if (selection.totalBytes > $('#free_space').val()) {
data.textStatus = 'notenoughspace';
data.errorThrown = t('files', 'Not enough free space, you are uploading {size1} but only {size2} is left', {
'{size1}': humanFileSize(selection.totalBytes),
'{size2}': humanFileSize($('#free_space').val())
'size1': humanFileSize(selection.totalBytes),
'size2': humanFileSize($('#free_space').val())
});
}

Loading…
Cancel
Save