From d8ac002001be966284a18f6edb5d1926628aea41 Mon Sep 17 00:00:00 2001 From: Philipp Date: Sun, 28 Nov 2021 15:27:39 +0100 Subject: [PATCH] Fix Introduction user selection --- src/Contact/Introduction/Repository/Introduction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Contact/Introduction/Repository/Introduction.php b/src/Contact/Introduction/Repository/Introduction.php index 6121d3aabc..3146ba396d 100644 --- a/src/Contact/Introduction/Repository/Introduction.php +++ b/src/Contact/Introduction/Repository/Introduction.php @@ -109,7 +109,7 @@ class Introduction extends BaseRepository { try { $BaseCollection = parent::_selectByBoundaries( - ['`uid = ?` AND NOT `ignore`',$uid], + ['`uid` = ? AND NOT `ignore`',$uid], ['order' => ['id' => 'DESC']], $min_id, $max_id, $limit); } catch (\Exception $e) {