X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fforms_setup.php;h=5ca44040ad69ac87d315e1fe2296597845ff42f7;hb=74dc7287df122a02d0e5ef3b8bda58e60057a5a1;hp=23de52ef9f646baade54faf9fc142e1496b6c787;hpb=9a28913a7143f2a8477fc387935b4c1f4fd53eca;p=fa-stable.git diff --git a/admin/forms_setup.php b/admin/forms_setup.php index 23de52ef..5ca44040 100644 --- a/admin/forms_setup.php +++ b/admin/forms_setup.php @@ -38,19 +38,25 @@ if (isset($_POST['setprefs'])) start_form(); -start_table("class='tablestyle'"); +start_outer_table("class='tablestyle'"); $systypes = get_systypes(); +table_section(1); $th = array(_("Form"), _("Next Reference")); table_header($th); - +$i = 0; while ($type = db_fetch($systypes)) { + if ($i++ == 11) + { + table_section(2); + table_header($th); + } ref_row(systypes::name($type["type_id"]), 'id' . $type["type_id"], '', $type["next_reference"]); } -end_table(1); +end_outer_table(1); submit_center('setprefs', _("Update"), true, '', true);