From: Janusz Dobrowolski Date: Tue, 4 Jan 2011 13:57:02 +0000 (+0000) Subject: Database host names up to 60 chars long allowed X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=7dd78a410f27c47740ba6c8347d52c42b6d60dbf;p=textcart.git Database host names up to 60 chars long allowed --- diff --git a/CHANGELOG.txt b/CHANGELOG.txt index f755e30..ca0a7a5 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -19,6 +19,11 @@ Legend: ! -> Note $ -> Affected files +04-Jan-2011 Janusz Dobrowolski +! Database host name up to 60 chars allowed. +$ /admin/create_coy.php + /install/index.php + 31-Dec-2010 Joe Hunt # Fixed bug in earlier invoice_db (GRN Provision should have only one row) Only GRN Clearring on stock items. diff --git a/admin/create_coy.php b/admin/create_coy.php index 21861a0..348c363 100644 --- a/admin/create_coy.php +++ b/admin/create_coy.php @@ -311,7 +311,7 @@ function display_company_edit($selected_id) else $_POST['tbpref'] = $tb_pref_counter."_"; text_row_ex(_("Company"), 'name', 30); - text_row_ex(_("Host"), 'host', 30); + text_row_ex(_("Host"), 'host', 30, 60); text_row_ex(_("Database User"), 'dbuser', 30); if ($selected_id == -1) text_row_ex(_("Database Password"), 'dbpassword', 30); diff --git a/install/index.php b/install/index.php index e9e0ef5..52adfbe 100644 --- a/install/index.php +++ b/install/index.php @@ -337,7 +337,7 @@ start_form(); } subpage_title(_('Database Server Settings')); start_table(TABLESTYLE); - text_row_ex(_("Server Host:"), 'host', 30); + text_row_ex(_("Server Host:"), 'host', 30, 60); text_row_ex(_("Database User:"), 'dbuser', 30); text_row_ex(_("Database Password:"), 'dbpassword', 30); text_row_ex(_("Database Name:"), 'dbname', 30);