thank you unnilennium for your reply, unfortunately I can't get it to work.
As suggested, I have changed, on line 252, false to true. After reconfiguring the server, I still see only one email field.
Here is what that fragment originally looks like:
---------------------------------------------------------------
/* Communication. */
$attributes['email'] = array(
'label' => _("Email"),
'type' => 'email',
'required' => false,
'params' => array('allow_multi' => false, 'strip_domain' => false, 'link_compose' => true)
);
$attributes['emails'] = array(
'label' => _("Emails"),
'type' => 'email',
'required' => false,
'params' => array('allow_multi' => true, 'strip_domain' => false, 'link_compose' => true)
);
------------------------------------------------------------------------------------------------------------------
and I changed it to:
-------------------------------------------------------------------------------------------------------------------
/* Communication. */
$attributes['email'] = array(
'label' => _("Email"),
'type' => 'email',
'required' => false,
'params' => array('allow_multi' => true, 'strip_domain' => false, 'link_compose' => true)
);
$attributes['emails'] = array(
'label' => _("Emails"),
'type' => 'email',
'required' => false,
'params' => array('allow_multi' => true, 'strip_domain' => false, 'link_compose' => true)
);
---------------------------------------------------------------------------------------------------------------
So I should be seeing two fields,
one : Email
and second one: Emails.
But I still continue to see one email field.
And I know that the change is taking effect because I can change
'label' =>
On the first one:
'label' => _("Home Email"),
And on the second one:
'label' => _("Work Email"),
But after server reconfigure I only see "Home Email" field
.