From 044aca602649a0b28229f92a82fbd7b6833f2c11 Mon Sep 17 00:00:00 2001 From: stephan Date: Wed, 27 May 2026 11:09:01 -0400 Subject: [PATCH] MSIN-4378 --- superadm/php/inc_fx_excell.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superadm/php/inc_fx_excell.php b/superadm/php/inc_fx_excell.php index b1f55a2..9e3ada4 100644 --- a/superadm/php/inc_fx_excell.php +++ b/superadm/php/inc_fx_excell.php @@ -631,7 +631,7 @@ function fxupload_excel_fnq($mem_fichier) { $newDate = date("Y-m-d", strtotime($r[3])); //echo("
"); - $sqlInsert = "INSERT INTO inscriptions_fnq set tq_nom='" . $GLOBALS['db']->fxEscape(htmlentities($r[0])) . "',tq_prenom='" . $GLOBALS['db']->fxEscape(htmlentities($r[1]) ). "',tq_sexe='" . $r[2] . "', tq_no='" . $r[4] . "',tq_naissance='" . $newDate . "',tq_timeupdate=now()"; + $sqlInsert = "INSERT INTO inscriptions_fnq set tq_nom='" . $GLOBALS['db']->fxEscape($r[0]) . "',tq_prenom='" . $GLOBALS['db']->fxEscape($r[1] ). "',tq_sexe='" . $r[2] . "', tq_no='" . $r[4] . "',tq_naissance='" . $newDate . "',tq_timeupdate=now()"; $qryInsert = $GLOBALS['db']->fxQuery($sqlInsert); }