@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 typo in variable name

Summary: Blame Rev: D6047

Test Plan:
$ arc lint # with D6406

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

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

+2 -2
+2 -2
src/applications/policy/filter/PhabricatorPolicy.php
··· 18 18 19 19 if (!$handle) { 20 20 throw new Exception( 21 - "Policy identifier is an object PHID ('{$phid_identifier}'), but no ". 21 + "Policy identifier is an object PHID ('{$policy_identifier}'), but no ". 22 22 "object handle was provided. A handle must be provided for object ". 23 23 "policies."); 24 24 } ··· 26 26 $handle_phid = $handle->getPHID(); 27 27 if ($policy_identifier != $handle_phid) { 28 28 throw new Exception( 29 - "Policy identifier is an object PHID ('{$phid_identifier}'), but ". 29 + "Policy identifier is an object PHID ('{$policy_identifier}'), but ". 30 30 "the provided handle has a different PHID ('{$handle_phid}'). The ". 31 31 "handle must correspond to the policy identifier."); 32 32 }