Themes/default/Poll.template.php 1 location
|
@@ 121-128 (lines=8) @@
|
| 118 |
|
<input type="checkbox" id="poll_change_vote" name="poll_change_vote"', !empty($context['poll']['change_vote']) ? ' checked' : '', ' class="input_check"> |
| 119 |
|
</dd>'; |
| 120 |
|
|
| 121 |
|
if ($context['poll']['guest_vote_allowed']) |
| 122 |
|
echo ' |
| 123 |
|
<dt> |
| 124 |
|
<label for="poll_guest_vote">', $txt['poll_guest_vote'], ':</label> |
| 125 |
|
</dt> |
| 126 |
|
<dd> |
| 127 |
|
<input type="checkbox" id="poll_guest_vote" name="poll_guest_vote"', !empty($context['poll']['guest_vote']) ? ' checked' : '', ' class="input_check"> |
| 128 |
|
</dd>'; |
| 129 |
|
} |
| 130 |
|
|
| 131 |
|
echo ' |
Themes/default/Post.template.php 1 location
|
@@ 328-335 (lines=8) @@
|
| 325 |
|
<input type="checkbox" id="poll_change_vote" name="poll_change_vote"', !empty($context['poll']['change_vote']) ? ' checked' : '', ' class="input_check"> |
| 326 |
|
</dd>'; |
| 327 |
|
|
| 328 |
|
if ($context['poll_options']['guest_vote_enabled']) |
| 329 |
|
echo ' |
| 330 |
|
<dt> |
| 331 |
|
<label for="poll_guest_vote">', $txt['poll_guest_vote'], ':</label> |
| 332 |
|
</dt> |
| 333 |
|
<dd> |
| 334 |
|
<input type="checkbox" id="poll_guest_vote" name="poll_guest_vote"', !empty($context['poll_options']['guest_vote']) ? ' checked' : '', ' class="input_check"> |
| 335 |
|
</dd>'; |
| 336 |
|
|
| 337 |
|
echo ' |
| 338 |
|
<dt> |