diff --git a/src/applications/transactions/editfield/PhabricatorTextAreaEditField.php b/src/applications/transactions/editfield/PhabricatorTextAreaEditField.php index 4c07b31e54..4d4e3a75b8 100644 --- a/src/applications/transactions/editfield/PhabricatorTextAreaEditField.php +++ b/src/applications/transactions/editfield/PhabricatorTextAreaEditField.php @@ -51,7 +51,11 @@ final class PhabricatorTextAreaEditField protected function getValueForControl() { $value = $this->getValue(); - return implode("\n", $value); + if ($this->getIsStringList()) { + return implode("\n", $value); + } else { + return $value; + } } protected function newConduitParameterType() {