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:
parent
181e030535
commit
383b0bdc04
|
@ -187,6 +187,7 @@ final class PhabricatorProjectQuery
|
||||||
protected function getPagingValueMap($cursor, array $keys) {
|
protected function getPagingValueMap($cursor, array $keys) {
|
||||||
$project = $this->loadCursorObject($cursor);
|
$project = $this->loadCursorObject($cursor);
|
||||||
return array(
|
return array(
|
||||||
|
'id' => $project->getID(),
|
||||||
'name' => $project->getName(),
|
'name' => $project->getName(),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue