@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 rendering of workboard column move stories when a single transaction performs moves on multiple boards

Summary:
See <https://discourse.phabricator-community.org/t/unhandled-exception-rendering-maniphest-task/3234>.

If a single transaction performs column moves on multiple different boards (which is permitted in the API), the rendering logic currently fails. Make it render properly.

Test Plan: {F7011464}

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

+2
+2
src/applications/transactions/storage/PhabricatorApplicationTransaction.php
··· 1133 1133 } else { 1134 1134 $fragments = array(); 1135 1135 foreach ($moves as $move) { 1136 + $to_column = $move['columnPHID']; 1137 + $board_phid = $move['boardPHID']; 1136 1138 $fragments[] = pht( 1137 1139 '%s (%s)', 1138 1140 $this->renderHandleLink($board_phid),