1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-22 23:02:42 +01:00

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
This commit is contained in:
epriestley 2019-08-07 08:57:19 -07:00
parent 87f878ec8a
commit 31254c5124

View file

@ -107,7 +107,7 @@ final class PhabricatorProjectColumnBulkMoveController
->executeLayout();
$dst_columns = $layout_engine->getColumns($dst_project->getPHID());
$dst_columns = mpull($columns, null, 'getPHID');
$dst_columns = mpull($dst_columns, null, 'getPHID');
$has_column = false;
$dst_column = null;