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

Correct column options presented in "Move tasks to project..." on workboards

Summary: Ref T13368. The column options presented to the user are currently incorrect because the wrong set of columns are drawn from.

Test Plan: On a workboard, used "Move tasks to project..." to target another board, saw that board's columns.

Maniphest Tasks: T13368

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

+1 -1
+1 -1
src/applications/project/controller/PhabricatorProjectColumnBulkMoveController.php
··· 107 107 ->executeLayout(); 108 108 109 109 $dst_columns = $layout_engine->getColumns($dst_project->getPHID()); 110 - $dst_columns = mpull($columns, null, 'getPHID'); 110 + $dst_columns = mpull($dst_columns, null, 'getPHID'); 111 111 112 112 $has_column = false; 113 113 $dst_column = null;