Topic: Error line break on supplier_list_cells when label is set to null
If call function supplier_list_cells with label set to null then the inactive check cell will be pushed down.
This can be tested on supplier.php with label modified to null on line 292.
Solution: function supplier_list_cells of ui_list.inc should be
function supplier_list_cells($label, $name, $selected_id=null, $all_option=false,
$submit_on_change=false, $all=false, $editkey = false)
{
if ($label != null)
echo "<td>$label</td>\n";
echo "<td>";
echo supplier_list($name, $selected_id, $all_option, $submit_on_change,
$all, $editkey);
echo "</td>\n";
}