1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-19 05:12:41 +01:00

Fix smushing of multiple values in Projects "Additional Hashtags" field

Summary: Ref T10168. When we render this control, we currently don't put commas into the value correctly if there are multiple alternative hashtags.

Test Plan: Edited a project with multiple alternate hashtags. Before change: they all got smushed together. After change: properly comma-separated.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10168

Differential Revision: https://secure.phabricator.com/D15045
This commit is contained in:
epriestley 2016-01-18 07:28:23 -08:00
parent 45a4a68628
commit 9ae48d4026

View file

@ -7,6 +7,11 @@ final class PhabricatorStringListEditField
return new AphrontFormTextControl();
}
protected function getValueForControl() {
$value = $this->getValue();
return implode(', ', $value);
}
protected function newConduitParameterType() {
return new ConduitStringListParameterType();
}