From: Janusz Dobrowolski Date: Fri, 6 Aug 2010 14:47:42 +0000 (+0000) Subject: Added COA encoding display. X-Git-Tag: v2.4.2~19^2~725 X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=6dd3e1db3d662f204627d65c9d4e8b0c011fc885;p=fa-stable.git Added COA encoding display. --- diff --git a/install/index.php b/install/index.php index 22d09a97..de7c8c6b 100644 --- a/install/index.php +++ b/install/index.php @@ -12,7 +12,7 @@ $page_security = 'SA_OPEN'; $path_to_root=".."; -if (file_exists($path_to_root.'/config.php')) +if (file_exists($path_to_root.'/config_db.php')) header("Location: $path_to_root/index.php"); include($path_to_root . "/install/isession.inc"); @@ -45,7 +45,7 @@ function subpage_title($txt) function display_coas() { start_table(TABLESTYLE); - $th = array(_("Chart of accounts"), _("Description"), _("Install")); + $th = array(_("Chart of accounts"), _("Description"), _("Encoding"), _("Install")); table_header($th); $k = 0; @@ -60,6 +60,7 @@ function display_coas() alt_table_row_color($k); label_cell($coa['name']); label_cell(is_array($coa['Descr']) ? implode('
', $coa['Descr']) : $coa['Descr']); + label_cell($coa['encoding']); if ($installed) label_cell(_("Installed")); else