Changeset 2078:0619de6f0565 for plugins
- Timestamp:
- 09/25/13 05:50:55 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/simpleMenu/index.php
r2002 r2078 476 476 '</tr>'. 477 477 '</thead>'. 478 '<tbody id="menuitemslist">';478 '<tbody '.(!$step ? 'id="menuitemslist"' : '>'); 479 479 $count = 0; 480 480 foreach ($menu as $i => $m) { … … 485 485 form::hidden(array('dynorder[]','dynorder-'.$i),$i).'</td>'; 486 486 echo '<td class="minimal">'.form::checkbox(array('items_selected[]','ims-'.$i),$i).'</td>'; 487 echo '<td class="nowrap" scope="row">'.form::field(array('items_label[]','iml-'.$i), 20,255,__($m['label'])).'</td>';488 echo '<td class="nowrap">'.form::field(array('items_descr[]','imd-'.$i), 30,255,__($m['descr'])).'</td>';489 echo '<td class="nowrap">'.form::field(array('items_url[]','imu-'.$i), 40,255,$m['url']).'</td>';487 echo '<td class="nowrap" scope="row">'.form::field(array('items_label[]','iml-'.$i),'',255,__($m['label'])).'</td>'; 488 echo '<td class="nowrap">'.form::field(array('items_descr[]','imd-'.$i),'30',255,__($m['descr'])).'</td>'; 489 echo '<td class="nowrap">'.form::field(array('items_url[]','imu-'.$i),'30',255,$m['url']).'</td>'; 490 490 } else { 491 491 echo '<td class="nowrap" scope="row">'.__($m['label']).'</td>';
Note: See TracChangeset
for help on using the changeset viewer.