@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 errant "switch ... continue"

Summary:
See <https://discourse.phabricator-community.org/t/unhandled-exception-on-create-task/2062>.

This construction has the same behavior as "switch ... break" but is unconventional. PHP 7.3 started warning about it because it's likely a mistake.

Test Plan: Created a task, edited a task owner. The new code is functionally identical to the old code.

Reviewers: amckinley

Reviewed By: amckinley

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

+1 -1
+1 -1
src/applications/maniphest/editor/ManiphestTransactionEditor.php
··· 290 290 $copy->setOwnerPHID($xaction->getNewValue()); 291 291 break; 292 292 default: 293 - continue; 293 + break; 294 294 } 295 295 } 296 296