Add multiple fonts
This commit is contained in:
+3
-1
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user