mirror of
https://framagit.org/framasoft/framadate/framadate
synced 2026-08-04 23:32:12 +00:00
Merge branch 'bug/error-on-empty-choices' into 'develop'
Bug/error on empty choices - 1.1.0 See merge request framasoft/framadate!298
This commit is contained in:
commit
c723c81697
2 changed files with 2 additions and 2 deletions
|
|
@ -206,7 +206,7 @@
|
|||
</li>
|
||||
<li class="hide">
|
||||
<input type="radio" id="n-choice-{$id}" name="choices[{$id}]" value=" "
|
||||
{(isset($selectedNewVotes[$id]) || ("" !== $selectedNewVotes[$id])) ? "" : " checked"}
|
||||
{(isset($selectedNewVotes[$id]) && ("" !== $selectedNewVotes[$id])) ? "" : " checked"}
|
||||
/>
|
||||
</li>
|
||||
</ul>
|
||||
|
|
|
|||
|
|
@ -269,7 +269,7 @@
|
|||
</li>
|
||||
<li class="hide">
|
||||
<input type="radio" id="n-choice-{$i}" name="choices[{$i}]" value=" "
|
||||
{(isset($selectedNewVotes[$i]) || ("" !== $selectedNewVotes[$i])) ? "" : " checked"}
|
||||
{(isset($selectedNewVotes[$i]) && ("" !== $selectedNewVotes[$i])) ? "" : " checked"}
|
||||
/>
|
||||
</li>
|
||||
</ul>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue