This commit is contained in:
Fredrick Brennan 2017-11-05 16:25:02 +08:00
parent 8e811cec44
commit ac8f15f0f2

View File

@ -655,7 +655,7 @@ if (isset($_POST['delete'])) {
if ($post['has_file']) { if ($post['has_file']) {
$i = 0; $i = 0;
foreach ($_FILES as $key => $file) { foreach ($_FILES as $key => $file) {
if ($file['error'] > 0) { if (!in_array($file['error'], array(UPLOAD_ERR_NO_FILE, UPLOAD_ERR_OK))) {
error(sprintf3($config['error']['phpfileserror'], array( error(sprintf3($config['error']['phpfileserror'], array(
'index' => $i+1, 'index' => $i+1,
'code' => $file['error'] 'code' => $file['error']