From: Janusz Dobrowolski Date: Fri, 15 Jan 2010 17:43:38 +0000 (+0000) Subject: Fixed maximal id length to 10 digits. X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=8eae1be4962be027cb3804faef3bf7dddddb913a;p=textcart.git Fixed maximal id length to 10 digits. --- diff --git a/gl/manage/gl_account_types.php b/gl/manage/gl_account_types.php index 2661b5a..b73d911 100644 --- a/gl/manage/gl_account_types.php +++ b/gl/manage/gl_account_types.php @@ -182,7 +182,7 @@ if ($selected_id != -1) label_row(_("ID:"), $_POST['id']); } else - text_row_ex(_("ID:"), 'id', 6); + text_row_ex(_("ID:"), 'id', 10); text_row_ex(_("Name:"), 'name', 50); gl_account_types_list_row(_("Subgroup Of:"), 'parent', null, _("None"), true);