- If I add "1,2,3" with type custom, the three link are added as custom link
- If I add "1, 2, 3" with type custom, only 1 is added as custom, 2 and 3 are added without type
This is due to comparison inside Tuleap new changeset code. $submitted_values['values'] for the artifact link field is like:
array( 1 => custom ' 2' => custom ' 3' => custom );
and ' 2' is not equal to 2 ...