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
@ -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…
Reference in New Issue
Block a user