Changeset 2253:9b0b1f2a522d for plugins/aboutConfig/index.php
- Timestamp:
- 10/04/13 14:12:07 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/aboutConfig/index.php
r2166 r2253 75 75 { 76 76 if ($s['type'] == 'boolean') { 77 $field = form::combo(array($field_name.'['.$ns.']['.$id.']',$field_name.'_'.$ id),77 $field = form::combo(array($field_name.'['.$ns.']['.$id.']',$field_name.'_'.$ns.'_'.$id), 78 78 array(__('yes') => 1, __('no') => 0),$s['value'] ? 1 : 0); 79 79 } else { 80 $field = form::field(array($field_name.'['.$ns.']['.$id.']',$field_name.'_'.$ id),40,null,80 $field = form::field(array($field_name.'['.$ns.']['.$id.']',$field_name.'_'.$ns.'_'.$id),40,null, 81 81 html::escapeHTML($s['value'])); 82 82 } … … 86 86 return 87 87 '<tr class="line">'. 88 '<td scope="row"><label for=" s_'.$id.'">'.sprintf($slabel,html::escapeHTML($id)).'</label></td>'.88 '<td scope="row"><label for="'.$field_name.'_'.$ns.'_'.$id.'">'.sprintf($slabel,html::escapeHTML($id)).'</label></td>'. 89 89 '<td>'.$field.'</td>'. 90 90 '<td>'.$s['type'].'</td>'.
Note: See TracChangeset
for help on using the changeset viewer.