@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.

Support "<select />" custom fields in bulk editor

Summary: Ref T13025. Fixes T5689. A straightforward change!

Test Plan: Used the bulk editor to modify a custom "select" field like the one in T5689.

Reviewers: amckinley

Reviewed By: amckinley

Maniphest Tasks: T13025, T5689

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

+5
+5
src/infrastructure/customfield/standard/PhabricatorStandardCustomFieldSelect.php
··· 148 148 return new ConduitStringParameterType(); 149 149 } 150 150 151 + protected function newBulkParameterType() { 152 + return id(new BulkSelectParameterType()) 153 + ->setOptions($this->getOptions()); 154 + } 155 + 151 156 }