removing last page from being stored
Some checks failed
PHPUnit / test (push) Has been cancelled

This commit is contained in:
2026-07-01 09:33:44 +02:00
parent bbf10fe866
commit 70dca17451
5 changed files with 29 additions and 0 deletions

View File

@ -69,6 +69,11 @@ function qdb_validate_app_submit_payload(
continue;
}
$type = $shortIdToType[$shortId] ?? '';
if (qdb_is_non_stored_answer_question_type($type)) {
continue;
}
$fullQID = $shortIdMap[$shortId];
$type = $shortIdToType[$shortId] ?? '';
$optKey = $a['answerOptionKey'] ?? null;