diff --git a/app/inc/constants.php b/app/inc/constants.php index b757398d421ad680cf7637bfc86da2c33cc49f2f..8f912e2ee231980610dcd7456a9fa67783d1c2d7 100644 --- a/app/inc/constants.php +++ b/app/inc/constants.php @@ -18,7 +18,7 @@ */ // FRAMADATE version -const VERSION = '1.1.1'; +const VERSION = '1.1.3'; // PHP Needed version const PHP_NEEDED_VERSION = '5.6'; diff --git a/tpl/part/vote_table_classic.tpl b/tpl/part/vote_table_classic.tpl index 2ebfd4b68adac571c2b803be17f26fb75f1f1275..35f78eb21ae146cb9e1787204e9ded70bc28345c 100644 --- a/tpl/part/vote_table_classic.tpl +++ b/tpl/part/vote_table_classic.tpl @@ -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> diff --git a/tpl/part/vote_table_date.tpl b/tpl/part/vote_table_date.tpl index 21b0fd32b0b266d732994525316aadbf0a931397..b3f06d8ea50857cba193f163f786eaa48ad2b25c 100644 --- a/tpl/part/vote_table_date.tpl +++ b/tpl/part/vote_table_date.tpl @@ -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>