@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 error message when calling "transaction.search" with a non-transactional object PHID as an "objectIdentifier"

Summary: See PHI1499. This error message doesn't provide parameters, and can be a little bit more helpful.

Test Plan: {F6957550}

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

+5 -2
+5 -2
src/applications/transactions/conduit/TransactionSearchConduitAPIMethod.php
··· 103 103 if (!($object instanceof PhabricatorApplicationTransactionInterface)) { 104 104 throw new Exception( 105 105 pht( 106 - 'Object "%s" does not implement "%s", so transactions can not '. 107 - 'be loaded for it.')); 106 + 'Object "%s" (of type "%s") does not implement "%s", so '. 107 + 'transactions can not be loaded for it.', 108 + $object_name, 109 + get_class($object), 110 + 'PhabricatorApplicationTransactionInterface')); 108 111 } 109 112 110 113 $xaction_query = PhabricatorApplicationTransactionQuery::newQueryForObject(