@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 a typo in `differential.querydiffs`

Summary:
- "revision" is misspelled.
- Remove an unused variable.

Test Plan: Used API console to call method.

Reviewers: btrahan, chad

Reviewed By: chad

CC: aran

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

+2 -2
+2 -2
src/applications/differential/conduit/ConduitAPI_differential_querydiffs_Method.php
··· 13 13 public function defineParamTypes() { 14 14 return array( 15 15 'ids' => 'optional list<uint>', 16 - 'revisonIDs' => 'optional list<uint>', 16 + 'revisionIDs' => 'optional list<uint>', 17 17 ); 18 18 } 19 19 ··· 28 28 protected function execute(ConduitAPIRequest $request) { 29 29 $ids = $request->getValue('ids', array()); 30 30 $revision_ids = $request->getValue('revisionIDs', array()); 31 + 31 32 $diffs = array(); 32 - $diff_dicts = array(); 33 33 if ($ids || $revision_ids) { 34 34 $diffs = id(new DifferentialDiffQuery()) 35 35 ->setViewer($request->getUser())