0
0
Fork 0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2025-03-14 21:42:52 +00:00

Fix - Incorrect lengths in emails_text vardefs

This commit is contained in:
o.smith 2024-06-11 15:34:48 +01:00 committed by Jack Anderson
parent 0fc04729be
commit 8b61a1ca8c

View file

@ -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(