MSIN-4328 — Update SQL queries in ajax_bib_range.php and inc_fx_promoteur.php to set par_maj alongside no_bib and par_date_bib, ensuring accurate timestamping for participant updates. Enhance fxChronotrackApiSync to include par_date_bib in filtering logic. Increment version code.

This commit is contained in:
2026-07-22 15:15:38 -04:00
parent b9e4395297
commit 23def197c8
3 changed files with 28 additions and 14 deletions

View File

@ -1274,7 +1274,9 @@ if ($action == 'reset_apply') {
$sql = "
UPDATE resultats_participants
SET no_bib = NULL
SET no_bib = NULL,
par_date_bib = NULL,
par_maj = '" . fxGetDateTime() . "'
WHERE par_id = $par_id
AND is_cancelled = 0
";
@ -1343,7 +1345,9 @@ if ($action == 'reset_all_apply') {
$sql = "
UPDATE resultats_participants
SET no_bib = NULL
SET no_bib = NULL,
par_date_bib = NULL,
par_maj = '" . fxGetDateTime() . "'
WHERE par_id = $par_id
AND is_cancelled = 0
";