Merge pull request #35 from chillu/pulls/VersionFeedFunctionalTest-sort-fix

Consistent sorting for getDiffList()
This commit is contained in:
Daniel Hensby 2016-05-20 01:13:03 +01:00
commit 898c281ef5
1 changed files with 3 additions and 1 deletions

View File

@ -61,7 +61,9 @@ class VersionFeed extends SiteTreeExtension {
// Get just enough elements for diffing. We need one more than desired to have something to compare to.
$qLimit = (int)$limit + 1;
$versions = $this->owner->allVersions(
"\"WasPublished\"='1' AND \"CanViewType\" IN ('Anyone', 'Inherit') $offset", "\"LastEdited\" DESC", $qLimit
"\"WasPublished\"='1' AND \"CanViewType\" IN ('Anyone', 'Inherit') $offset",
"\"SiteTree\".\"LastEdited\" DESC, \"SiteTree\".\"ID\" DESC",
$qLimit
);
// Process the list to add the comparisons.