X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=taxes%2Ftax_groups.php;h=16873e04ecf2724e849795ea1a2ef1a522827365;hb=efa2530a7c385a329c3fc76f4560b28ba97c3efe;hp=4e138991efbca8f4bed509f0e1a442a93b08e58a;hpb=0b63d898491b6577a5a5bf90e771dca0dcbbcf1f;p=fa-stable.git diff --git a/taxes/tax_groups.php b/taxes/tax_groups.php index 4e138991..16873e04 100644 --- a/taxes/tax_groups.php +++ b/taxes/tax_groups.php @@ -49,8 +49,11 @@ if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM') while (($id = find_submit('tax_type_id'))!=-1) { - $taxes[] = $id; - $tax_shippings[] = check_value('tax_shipping'.$id); + if (check_value('tax_type_id'.$id) != 0) + { + $taxes[] = $id; + $tax_shippings[] = check_value('tax_shipping'.$id); + } unset($_POST['tax_type_id' . $id]); unset($_POST['tax_shipping' . $id]); } @@ -136,7 +139,7 @@ while ($myrow = db_fetch($result)) inactive_control_cell($myrow["id"], $myrow["inactive"], 'tax_groups', 'id'); edit_button_cell("Edit".$myrow["id"], _("Edit")); delete_button_cell("Delete".$myrow["id"], _("Delete")); - end_row();; + end_row(); } inactive_control_row($th); @@ -207,4 +210,3 @@ end_form(); end_page(); -?>