From: Joe Hunt Date: Sat, 5 Sep 2009 15:07:26 +0000 (+0000) Subject: Changed Class Type to Class Name X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=492ee224752415a411943574686f197553a65c5f;p=textcart.git Changed Class Type to Class Name --- diff --git a/gl/manage/gl_account_types.php b/gl/manage/gl_account_types.php index 19093b2..b152e2c 100644 --- a/gl/manage/gl_account_types.php +++ b/gl/manage/gl_account_types.php @@ -124,7 +124,7 @@ if ($Mode == 'RESET') $result = get_account_types(); start_form(); start_table($table_style); -$th = array(_("ID"), _("Name"), _("Subgroup Of"), _("Class Type"), "", ""); +$th = array(_("ID"), _("Name"), _("Subgroup Of"), _("Class Name"), "", ""); table_header($th); $k = 0; @@ -184,7 +184,7 @@ text_row_ex(_("Name:"), 'name', 50); gl_account_types_list_row(_("Subgroup Of:"), 'parent', null, _("None"), true); -class_list_row(_("Class Type:"), 'class_id', null); +class_list_row(_("Class Name:"), 'class_id', null); end_table(1);