removing unnecessary write logs
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Antoine M 2024-10-07 10:53:22 +02:00
parent 5965f09b03
commit 030ba4d38f
2 changed files with 0 additions and 2 deletions

View File

@ -101,7 +101,6 @@ function load_more_fiches_infos()
// $isQueryEmpty = $ajax_query->have_posts() ? false : true;
$isQueryEmpty = $offset + 1 >= $ajax_query->max_num_pages ? true : false;
// write_log($isQueryEmpty);
// BREAK IF QUERY IS EMPTY
if ($ajax_query->have_posts() == false) {

View File

@ -47,7 +47,6 @@ function populate_note_comment_based_on_rating($form)
$stringified_information_accessibility_rating = isset($field["choices"][$global_user_rating - 1]['text']) ? $field["choices"][$global_user_rating - 1]['text'] : '';
write_log($stringified_information_accessibility_rating);
$_POST["input_{$nextHiddenLabelField->id}"] = $stringified_information_accessibility_rating;
}