@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+5
+5
src/applications/transactions/editfield/PhabricatorStringListEditField.php
··· 7 7 return new AphrontFormTextControl(); 8 8 } 9 9 10 + protected function getValueForControl() { 11 + $value = $this->getValue(); 12 + return implode(', ', $value); 13 + } 14 + 10 15 protected function newConduitParameterType() { 11 16 return new ConduitStringListParameterType(); 12 17 }