Bonjour, la solution semble être ici : https://github.com/PrestaShop/PrestaShop/pull/5578
fichier : controllers/admin/AdminImportController.php vers ligne 1066
public static function arrayWalk(&$array, $funcname, &$user_data = false) } foreach ($array as $k => $row) {
- if (!call_user_func_array($funcname, array($row, $k, $user_data))) {
+ if (!call_user_func_array($funcname, array($row, $k, &$user_data))) {
return false; } }