|
@@ -118,7 +118,7 @@
|
|
|
<div>
|
|
|
<{foreach from=$focusDisplay item=info key=key}>
|
|
|
<label class="radio-inline">
|
|
|
- <input name="focus_display" type="radio" value="<{$key}>" <{if $eventData.focus_display == $key}>checked<{/if}> > <{$info.desc}>
|
|
|
+ <input name="focus_display" type="radio" value="<{$key}>" <{if $key == 1}>checked<{/if}> > <{$info.desc}>
|
|
|
</label>
|
|
|
<{/foreach}>
|
|
|
</div>
|
|
@@ -129,7 +129,7 @@
|
|
|
<div>
|
|
|
<{foreach from=$topDisplay item=info key=key}>
|
|
|
<label class="radio-inline">
|
|
|
- <input name="top_display" type="radio" value="<{$key}>" <{if $eventData.top_display == $key}>checked<{/if}> > <{$info.desc}>
|
|
|
+ <input name="top_display" type="radio" value="<{$key}>" <{if $key == 1}>checked<{/if}> > <{$info.desc}>
|
|
|
</label>
|
|
|
<{/foreach}>
|
|
|
</div>
|
|
@@ -140,7 +140,7 @@
|
|
|
<div>
|
|
|
<{foreach from=$authorize item=info key=authid}>
|
|
|
<label class="radio-inline">
|
|
|
- <input name="authorize" type="radio" value="<{$authid}>"> <{$info.desc}>
|
|
|
+ <input name="authorize" type="radio" value="<{$authid}>" <{if $authid == 1}>checked<{/if}>> <{$info.desc}>
|
|
|
</label>
|
|
|
<{/foreach}>
|
|
|
</div>
|
|
@@ -151,7 +151,7 @@
|
|
|
<div>
|
|
|
<{foreach from=$listDisplay item=info key=key}>
|
|
|
<label class="radio-inline">
|
|
|
- <input name="list_display" type="radio" value="<{$key}>"> <{$info.desc}>
|
|
|
+ <input name="list_display" type="radio" value="<{$key}>" <{if $key == 1}>checked<{/if}>> <{$info.desc}>
|
|
|
</label>
|
|
|
<{/foreach}>
|
|
|
</div>
|