@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 an issue with TextAreaEditField affecting Paste

Summary: Fixes T10952. Fixes T10930. I didn't implement this method correctly when I expanded this field for repositories.

Test Plan: Edited a paste without warnings.

Reviewers: avivey, chad

Reviewed By: chad

Maniphest Tasks: T10930, T10952

Differential Revision: https://secure.phabricator.com/D15892

+5 -1
+5 -1
src/applications/transactions/editfield/PhabricatorTextAreaEditField.php
··· 51 51 52 52 protected function getValueForControl() { 53 53 $value = $this->getValue(); 54 - return implode("\n", $value); 54 + if ($this->getIsStringList()) { 55 + return implode("\n", $value); 56 + } else { 57 + return $value; 58 + } 55 59 } 56 60 57 61 protected function newConduitParameterType() {