[js_upload] Fixing missing extension index #827

Merged
nupplaphil merged 3 commits from issue/6338-php_notices into 2019.03-RC 2019-03-14 03:50:58 +01:00
Showing only changes of commit e0815309d0 - Show all commits

View file

@ -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
];