mirror of
https://git.cant.at/Madeorsk/PollVerlaine
synced 2024-11-21 19:54:31 +01:00
Do not show HTML for items labels.
This commit is contained in:
parent
4c3241349e
commit
f168daf94d
@ -5,7 +5,7 @@
|
|||||||
<div class="option">
|
<div class="option">
|
||||||
<input type="<?= $poll->settings->multiple_choices ? "checkbox" : "radio" ?>" name="options[]" value="<?= $id ?>" id="option-<?= $id ?>" />
|
<input type="<?= $poll->settings->multiple_choices ? "checkbox" : "radio" ?>" name="options[]" value="<?= $id ?>" id="option-<?= $id ?>" />
|
||||||
<label for="option-<?= $id ?>" class="check"></label>
|
<label for="option-<?= $id ?>" class="check"></label>
|
||||||
<label for="option-<?= $id ?>"><?= $option->label ?></label>
|
<label for="option-<?= $id ?>"><?= htmlspecialchars($option->label) ?></label>
|
||||||
</div>
|
</div>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
<input type="submit" value="Vote" />
|
<input type="submit" value="Vote" />
|
||||||
|
@ -11,7 +11,7 @@ foreach ($poll->options as $option)
|
|||||||
<?php foreach ($poll->options as $index => $option): ?>
|
<?php foreach ($poll->options as $index => $option): ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="number"><?= $option->votes ?></td>
|
<td class="number"><?= $option->votes ?></td>
|
||||||
<td style="color: <?= $chart_colors[$index%$chart_colors_number] ?>"><?= $option->label ?></td>
|
<td style="color: <?= $chart_colors[$index%$chart_colors_number] ?>"><?= htmlspecialchars($option->label) ?></td>
|
||||||
<td><?= $total_votes == 0 ? 0 : round($option->votes / $total_votes, 3)*100 ?>%</td>
|
<td><?= $total_votes == 0 ? 0 : round($option->votes / $total_votes, 3)*100 ?>%</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
|
Loading…
Reference in New Issue
Block a user