Changeset 1109:499bd73e7a86 for plugins/aboutConfig/index.php
- Timestamp:
- 03/05/13 14:17:28 (12 years ago)
- Branch:
- 2.5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/aboutConfig/index.php
r907 r1109 76 76 if ($s['type'] == 'boolean') { 77 77 $field = form::combo(array($field_name.'['.$ns.']['.$id.']',$field_name.'_'.$id), 78 array(__('yes') => 1, __('no') => 0),$s['value'] );78 array(__('yes') => 1, __('no') => 0),$s['value'] ? 1 : 0); 79 79 } else { 80 80 $field = form::field(array($field_name.'['.$ns.']['.$id.']',$field_name.'_'.$id),40,null,
Note: See TracChangeset
for help on using the changeset viewer.