You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (isset($_FILES[$fileParamName]['error'][$this->n]) && $_FILES[$fileParamName]['error'][$this->n] > 0) {
188
-
$this->param['not_uploaded_files'][] = $fileName; //All not move files name into the destination folder [ Note: Check Folder Permission ]
189
-
$this->param['not_uploaded_files_error'][] = $this->phpFileUploadErrors[$_FILES[$fileParamName]['error']]; //All not move files name into the destination folder with error [ Note: Check Folder Permission ]
190
-
} else {
185
+
if (isset($_FILES[$fileParamName]['error'][$this->n]) && $_FILES[$fileParamName]['error'][$this->n] > 0) {
186
+
$this->param['not_uploaded_files'][] = $fileName; //All not move files name into the destination folder [ Note: Check Folder Permission ]
187
+
$this->param['not_uploaded_files_error'][] = $this->phpFileUploadErrors[$_FILES[$fileParamName]['error'][$this->n]]; //All not move files name into the destination folder with error [ Note: Check Folder Permission ]
0 commit comments