X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fmanage%2Fsales_groups.php;h=287ba1f2f5010623651d8f37dabae72a4b3bca91;hb=cf502cf9d94e5341eddd9138cd9896be595ce108;hp=a67dc49aa8a7370741b4a73677511f5d3f38b0a2;hpb=46c5f7a65a7659a44ae8254c63152074363d3987;p=fa-stable.git diff --git a/sales/manage/sales_groups.php b/sales/manage/sales_groups.php index a67dc49a..287ba1f2 100644 --- a/sales/manage/sales_groups.php +++ b/sales/manage/sales_groups.php @@ -27,7 +27,7 @@ if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM') if (strlen($_POST['description']) == 0) { $input_error = 1; - display_error(_("The area description cannot be empty.")); + display_error(_("The sales group description cannot be empty.")); set_focus('description'); } @@ -65,7 +65,7 @@ if ($Mode == 'Delete') { delete_sales_group($selected_id); display_notification(_('Selected sales group has been deleted')); - } //end if Delete area + } //end if Delete group $Mode = 'RESET'; } @@ -81,7 +81,7 @@ if ($Mode == 'RESET') $result = get_sales_groups(check_value('show_inactive')); start_form(); -start_table(TABLESTYLE, "width=30%"); +start_table(TABLESTYLE, "width='30%'"); $th = array(_("ID"), _("Group Name"), "", ""); inactive_control_column($th); @@ -111,7 +111,7 @@ start_table(TABLESTYLE2); if ($selected_id != -1) { if ($Mode == 'Edit') { - //editing an existing area + //editing an existing group $myrow = get_sales_group($selected_id); $_POST['description'] = $myrow["description"]; @@ -129,4 +129,3 @@ submit_add_or_update_center($selected_id == -1, '', 'both'); end_form(); end_page(); -?>