mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-03-14 21:42:52 +00:00
Fix #10443 - Incorrect lengths in emails_text vardefs
This commit is contained in:
parent
0fc04729be
commit
8b61a1ca8c
1 changed files with 2 additions and 2 deletions
|
@ -304,14 +304,14 @@ $dictionary['emails_text'] = array(
|
|||
'name' => 'from_addr',
|
||||
'vname' => 'LBL_FROM',
|
||||
'type' => 'varchar',
|
||||
'len' => 250,
|
||||
'len' => 255,
|
||||
'comment' => 'Email address of person who send the email',
|
||||
),
|
||||
'reply_to_addr' => array(
|
||||
'name' => 'reply_to_addr',
|
||||
'vname' => 'LBL_REPLY_TO',
|
||||
'type' => 'varchar',
|
||||
'len' => 250,
|
||||
'len' => 255,
|
||||
'comment' => 'reply to email address',
|
||||
),
|
||||
'to_addrs' => array(
|
||||
|
|
Loading…
Reference in a new issue