Fixed notifications order

This commit is contained in:
Jeroen De Meerleer 2019-03-07 13:10:48 +01:00 committed by Hypolite Petovan
parent 708bf72929
commit a01a53a9f0
1 changed files with 2 additions and 1 deletions

View File

@ -73,7 +73,7 @@ class NotificationsManager extends BaseObject
$dbFilter = array_merge($filter, ['uid' => local_user()]);
$stmtNotifies = DBA::select('notify', [], $dbFilter, $order, $params);
$stmtNotifies = DBA::select('notify', [], $dbFilter, $params);
if (DBA::isResult($stmtNotifies)) {
return $this->_set_extra(DBA::toArray($stmtNotifies));
@ -429,6 +429,7 @@ class NotificationsManager extends BaseObject
}
$params = [];
$params['order'] = ['date' => 'DESC'];
$params['limit'] = [$start, $limit];
$stmtNotifies = DBA::select('notify',