1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 08:52:39 +01:00

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
This commit is contained in:
epriestley 2016-02-29 14:21:34 -08:00
parent 181e030535
commit 383b0bdc04

View file

@ -187,6 +187,7 @@ final class PhabricatorProjectQuery
protected function getPagingValueMap($cursor, array $keys) {
$project = $this->loadCursorObject($cursor);
return array(
'id' => $project->getID(),
'name' => $project->getName(),
);
}