From c03782de5d6c3b11008ec8b84cce6f7e1b33f0b1 Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Wed, 8 Aug 2007 13:16:24 +0000 Subject: [PATCH] Minor adjustments --- CHANGELOG.txt | 7 +++++++ access/login.php | 2 +- admin/create_coy.php | 10 +++++----- config.php | 2 +- reporting/includes/pdf_report.inc | 2 +- 5 files changed, 15 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 4d41f313..b1c45106 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -19,6 +19,13 @@ Legend: ! -> Note $ -> Affected files +08-Aug-2007 + # Minor adjustments + $ config.php + /access/login.php + /admin/create_coy.php + /reporting/includes/pdf_report.inc + 04-Aug-2007 + Added a default fiscal year in the en_US-new.sql and start references. $ /sql/en_US-new.sql diff --git a/access/login.php b/access/login.php index 3f9a04af..408af0e2 100644 --- a/access/login.php +++ b/access/login.php @@ -30,7 +30,7 @@ function defaultCompany() - + diff --git a/admin/create_coy.php b/admin/create_coy.php index ed557b6d..ef633b5f 100644 --- a/admin/create_coy.php +++ b/admin/create_coy.php @@ -234,12 +234,12 @@ function display_company_edit($selected_id) } else $_POST['tbpref'] = $tb_pref_counter."_"; - text_row_ex(_("Company"), 'name', 20); - text_row_ex(_("Host"), 'host', 20); - text_row_ex(_("Database User"), 'dbuser', 20); + text_row_ex(_("Company"), 'name', 30); + text_row_ex(_("Host"), 'host', 30); + text_row_ex(_("Database User"), 'dbuser', 30); if ($selected_id == -1) - text_row_ex(_("Database Password"), 'dbpassword', 20); - text_row_ex(_("Database Name"), 'dbname', 20); + text_row_ex(_("Database Password"), 'dbpassword', 30); + text_row_ex(_("Database Name"), 'dbname', 30); if ($selected_id == -1) yesno_list_row(_("Table Pref"), 'tbpref', 1, $_POST['tbpref'], _("None"), false); else diff --git a/config.php b/config.php index 6e0fced3..277d2ccf 100644 --- a/config.php +++ b/config.php @@ -59,7 +59,7 @@ // Powered by $power_by = "FrontAccounting"; - $power_url = "http://frontaccounting.net/ftac"; + $power_url = "http://frontaccounting.net"; /*Stock units array*/ $stock_units = array(_("ea."), _("m"), _("kgg"), _("tons"), _("l"), _("lbs"), _("dozen"), _("pack"), _("hrs")); diff --git a/reporting/includes/pdf_report.inc b/reporting/includes/pdf_report.inc index 72cc3390..e1455554 100644 --- a/reporting/includes/pdf_report.inc +++ b/reporting/includes/pdf_report.inc @@ -466,8 +466,8 @@ class FrontReport extends Cpdf $adr = explode("\n", $this->company['postal_address']); for ($i = 0; $i < count($adr); $i++) { - $this->NewLine(); $this->Text($ccol, $adr[$i], $ccol2 + 40); + $this->NewLine(); } $this->row = $adrline; $this->Text($ccol2 + 30, $this->company['phone'], $mcol); -- 2.30.2
FrontAccountingFrontAccounting