@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 missing cursor data for paging Projects by creation date

Summary: Fixes T10478.

Test Plan: Paged projects by "Created" without errors.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10478

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

+1
+1
src/applications/project/query/PhabricatorProjectQuery.php
··· 187 187 protected function getPagingValueMap($cursor, array $keys) { 188 188 $project = $this->loadCursorObject($cursor); 189 189 return array( 190 + 'id' => $project->getID(), 190 191 'name' => $project->getName(), 191 192 ); 192 193 }