Skip to content
Snippets Groups Projects
Commit fd2c6d5d authored by David Siegfried's avatar David Siegfried
Browse files

prevent php8-warnings, closes #2837

Closes #2837

Merge request studip/studip!1921
parent a320594b
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ $responseData = isset($response->answerdata['answers']) ? $response->answerdata[
title="<?= htmlReady($answer) ?>"
aria-labelledby="<?= $html_id ?>"
name="answers[<?= $vote->getId() ?>][answerdata][answers][<?= htmlReady($index) ?>]"
<?= $responseData[$index] === $answer_index ? 'checked' : '' ?>
<?= isset($responseData[$index]) && $responseData[$index] === $answer_index ? 'checked' : '' ?>
value="<?= htmlReady($answer_index) ?>">
</td>
<? endforeach ?>
......
......@@ -40,7 +40,7 @@ $responseData = $response['answerdata'] && $response['answerdata']['answers'] ?
title="<?= htmlReady($i) ?>"
aria-labelledby="<?= $html_id ?>"
name="answers[<?= $vote->getId() ?>][answerdata][answers][<?= htmlReady($index) ?>]"
<?= $responseData[$index] == $i ? 'checked' : '' ?>
<?= isset($responseData[$index]) && $responseData[$index] == $i ? 'checked' : '' ?>
value="<?= htmlReady($i) ?>">
</td>
<? endfor ?>
......
......@@ -15,6 +15,9 @@ if ($numTaskAnswers > 0) {
if ($vote->questiondata['multiplechoice']) {
if (is_array($answer['answerdata']['answers']) || $answer['answerdata']['answers'] instanceof Traversable) {
foreach ($answer['answerdata']['answers'] as $a) {
if (!isset($results[(int)$a])) {
$results[(int)$a] = 0;
}
$results[(int)$a]++;
$results_users[(int)$a][] = $answer['user_id'];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment