I have created a custom field type that can store my value in an array.
Everything works fine, however I created another input and pass the value as $field['additional_text'] however this updates ['value'] rather than ['additional_text'].
Array ( [value] => X [additional_text] => Y )
How do I target the correct key to pass the values to?