Disable autofill in quick create

In Accounts module when I am quick creating contacts the account name and the phone are automatically filled.
How can I remove phone from auto filling? I still want the account name to be autofilled.
I did some research, but couldn’t find something useful.

Thank you in advance,

UPDATE:
In the file include/generic/SugarWidgets/SugarWidgetSubPanelTopButtonQuickCreate.php I changed the line 171 from

if($key != 'action')

to

if(($key != 'action') && ($key!='phone_work'))

It seems that the change did the trick but probably this is not an upgrade safe option.

Anyone with an upgrade-safe option?