issue 196 radio, checkbox in skin.xml,

show title instead value in skin config


git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9523 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ovclas 2011-10-10 06:21:16 +00:00
parent 0af5bfc894
commit 47e2ac4931

View file

@ -105,7 +105,7 @@
<!--@foreach($val->options as $k=>$v)-->
<span>
<input type="checkbox" name="{$val->name}[]" value="{$v->value}" id="ch_{$key}_{$k}" <!--@if(in_array($v->value, $val->value))-->checked="checked"<!--@end--> class="checkbox" />
<label for="ch_{$key}_{$k}">{$v->value}</label>
<label for="ch_{$key}_{$k}">{$v->title}</label>
</span>
<!--@end-->
@ -113,7 +113,7 @@
<!--@foreach($val->options as $k=>$v)-->
<span>
<input type="radio" name="{$val->name}" value="{$v->value}" id="ch_{$key}_{$k}" <!--@if($v->value==$val->value)-->checked="checked"<!--@end-->/>
<label for="ch_{$key}_{$k}">{$v->value}</label>
<label for="ch_{$key}_{$k}">{$v->title}</label>
</span>
<!--@end-->