Topic: Email Address in Company Set Up

The email address in comany set up will not accomodate my email address, it is set to 25 whereas all other email fields are set to 50.

admin/company_preferences.php line 170

email_row_ex(_("Email Address:"), 'email', 25, 55);

email_row_ex(_("BCC Address for all outgoing mails:"), 'bcc_email', 25, 55);

to

email_row_ex(_("Email Address:"), 'email', 50;

email_row_ex(_("BCC Address for all outgoing mails:"), 'bcc_email', 50);

This bring them into line with the 3 other places email can be entered.

Cheers

G

Re: Email Address in Company Set Up

Even if you only see 25 characters, you can enter up to 55 characters.

Maybe you meen that you want to see more characters, right?

I will look at this.

Joe

Re: Email Address in Company Set Up

Yes see more chars, there is room

Cheers

G

4 (edited by apmuthu 12/18/2014 06:10:44 pm)

Re: Email Address in Company Set Up

Even the Company Name too can be made as big (50).

--- old/admin/company_preferences.php    Mon Sep 29 21:21:28 2014
+++ new/admin/company_preferences.php    Thu Dec 18 23:35:49 2014
@@ -161,15 +161,15 @@
 
 table_section(1);
 
-text_row_ex(_("Name (to appear on reports):"), 'coy_name', 42, 50);
+text_row_ex(_("Name (to appear on reports):"), 'coy_name', 50, 50);
 textarea_row(_("Address:"), 'postal_address', $_POST['postal_address'], 35, 6);
 text_row_ex(_("Domicile:"), 'domicile', 25, 55);
 
 text_row_ex(_("Phone Number:"), 'phone', 25, 55);
 text_row_ex(_("Fax Number:"), 'fax', 25);
-email_row_ex(_("Email Address:"), 'email', 25, 55);
+email_row_ex(_("Email Address:"), 'email', 50, 55);
 
-email_row_ex(_("BCC Address for all outgoing mails:"), 'bcc_email', 25, 55);
+email_row_ex(_("BCC Address for all outgoing mails:"), 'bcc_email', 50, 55);
 
 text_row_ex(_("Official Company Number:"), 'coy_no', 25);
 text_row_ex(_("GSTNo:"), 'gst_no', 25);
Post's attachments

CoLargeTxtFieldSizes.zip 54.4 kb, file has never been downloaded. 

You don't have the permssions to download the attachments of this post.

Re: Email Address in Company Set Up

Thanks apmuthu, will update the HG repo later this evening.

Joe