@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.

Add a missing (int) cast to diff IDs for new "transaction.search" method

Summary: These come out of the database as strings (see T12678), force them to integers for the API.

Test Plan: Called `transaction.search`, got integers in JSON instead of strings.

Reviewers: chad

Reviewed By: chad

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

+1 -1
+1 -1
src/applications/differential/xaction/DifferentialRevisionInlineTransaction.php
··· 40 40 41 41 return array( 42 42 'diff' => array( 43 - 'id' => $diff->getID(), 43 + 'id' => (int)$diff->getID(), 44 44 'phid' => $diff->getPHID(), 45 45 ), 46 46 'path' => $changeset->getDisplayFilename(),