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

Return a integer JSON type from "*.edit" endpoints for the object ID

Summary: See PHI425. See T12678. This should be an integer, but may be a string.

Test Plan: Called `differential.revision.edit`, observed integer in result instead of string.

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

+1 -1
+1 -1
src/applications/transactions/editengine/PhabricatorEditEngine.php
··· 2092 2092 2093 2093 return array( 2094 2094 'object' => array( 2095 - 'id' => $object->getID(), 2095 + 'id' => (int)$object->getID(), 2096 2096 'phid' => $object->getPHID(), 2097 2097 ), 2098 2098 'transactions' => $xactions_struct,