Fix wrong intends in js_upload

This commit is contained in:
Philipp Holzer 2019-03-13 21:01:09 +01:00
parent dcf4b5695d
commit e0815309d0
No known key found for this signature in database
GPG Key ID: 517BE60E2CE5C8A5
1 changed files with 21 additions and 21 deletions

View File

@ -308,7 +308,7 @@ class qqFileUploader {
*/ */
function handleUpload(){ function handleUpload(){
if (!$this->file){ if (!$this->file) {
return ['error' => L10n::t('No files were uploaded.')]; return ['error' => L10n::t('No files were uploaded.')];
} }
@ -346,13 +346,13 @@ class qqFileUploader {
if ($this->file->save()){ if ($this->file->save()){
return [ return [
'success'=>true, 'success' => true,
'path' => $this->file->getPath(), 'path' => $this->file->getPath(),
'filename' => $filename . '.' . $ext 'filename' => $filename . '.' . $ext
]; ];
} else { } else {
return [ return [
'error'=> L10n::t('Upload was cancelled, or server error encountered'), 'error' => L10n::t('Upload was cancelled, or server error encountered'),
'path' => $this->file->getPath(), 'path' => $this->file->getPath(),
'filename' => $filename . '.' . $ext 'filename' => $filename . '.' . $ext
]; ];