Right align numbers in inquiries and lists.
[fa-stable.git] / sales / manage / sales_groups.php
index 60482ba34001523cc29c75221f8988be193db40a..c85d8f6d96847fac671747258e9b07280c25777d 100644 (file)
@@ -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);
 
@@ -93,7 +93,7 @@ while ($myrow = db_fetch($result))
        
        alt_table_row_color($k);
                
-       label_cell($myrow["id"]);
+       label_cell($myrow["id"], "nowrap align='right'");
        label_cell($myrow["description"]);
        inactive_control_cell($myrow["id"], $myrow["inactive"], 'groups', 'id');
        edit_button_cell("Edit".$myrow["id"], _("Edit"));
@@ -129,4 +129,3 @@ submit_add_or_update_center($selected_id == -1, '', 'both');
 end_form();
 
 end_page();
-?>