Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2020-01-24 19:03:45 +0300
committerJulius Härtl <jus@bitgrid.net>2020-02-04 21:13:50 +0300
commit5fa28fc23a94231dc0d5f7c67816c25250ba2826 (patch)
treec54a487cd2a2aa29d9a36c38710d05ffbc2277e3 /lib
parent4f1d466de8e3b6be6bb74cc7b8db72cfc3bbc8fe (diff)
Fetch steps sorted by version and id
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'lib')
-rw-r--r--lib/Db/StepMapper.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Db/StepMapper.php b/lib/Db/StepMapper.php
index 4546c92d2..97cb65990 100644
--- a/lib/Db/StepMapper.php
+++ b/lib/Db/StepMapper.php
@@ -47,6 +47,7 @@ class StepMapper extends QBMapper {
$qb
->setMaxResults(100)
->orderBy('version')
+ ->orderBy('id')
->execute();
return $this->findEntities($qb);