diff --git a/ChangeLog b/ChangeLog index a529897d40..a84e9b610e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -66,6 +66,7 @@ phpMyAdmin - ChangeLog - issue #11939 Correct content type for uploaded error reports - issue #11940 Silent errors from checking local documentation - issue #11944 Fixed error on servers with disabled php_uname +- issue #11946 Correctly store and report file upload errors 4.5.4.1 (2016-01-29) - issue #11892 Error with PMA 4.4.15.3 diff --git a/tbl_replace.php b/tbl_replace.php index f8522ae477..668d2c3b22 100644 --- a/tbl_replace.php +++ b/tbl_replace.php @@ -244,7 +244,7 @@ foreach ($loop_array as $rownumber => $where_clause) { } if ($file_to_insert->isError()) { - $message .= $file_to_insert->getError(); + $insert_errors[] = $file_to_insert->getError(); } // delete $file_to_insert temporary variable $file_to_insert->cleanUp();