Fix wrong intends in js_upload
parent
dcf4b5695d
commit
e0815309d0
|
@ -308,7 +308,7 @@ class qqFileUploader {
|
|||
*/
|
||||
function handleUpload(){
|
||||
|
||||
if (!$this->file){
|
||||
if (!$this->file) {
|
||||
return ['error' => L10n::t('No files were uploaded.')];
|
||||
}
|
||||
|
||||
|
@ -346,13 +346,13 @@ class qqFileUploader {
|
|||
|
||||
if ($this->file->save()){
|
||||
return [
|
||||
'success'=>true,
|
||||
'success' => true,
|
||||
'path' => $this->file->getPath(),
|
||||
'filename' => $filename . '.' . $ext
|
||||
];
|
||||
} else {
|
||||
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(),
|
||||
'filename' => $filename . '.' . $ext
|
||||
];
|
||||
|
|
Loading…
Reference in New Issue