Add multiple fonts

This commit is contained in:
2026-09-04 01:21:19 +02:00
parent da47b39315
commit 28e1616c94
18 changed files with 540 additions and 44 deletions
+3 -1
View File
@@ -265,7 +265,9 @@ class Journal extends PhpObject {
],
'from' => self::ENTRY_TABLE,
'constraint'=> [Db::getId(User::USER_TABLE) => $this->oUser->getUserId()],
'orderBy' => [$sIdColumn => 'ASC']
//By when it was written, not by when it was inserted. The id is only
//the tiebreaker for two entries begun in the same second.
'orderBy' => ['started_on' => 'ASC', $sIdColumn => 'ASC']
]);
return array_map(static function(array $asRow): array {