From: Philipp Date: Sun, 28 Nov 2021 14:27:39 +0000 (+0100) Subject: Fix Introduction user selection X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d8ac002001be966284a18f6edb5d1926628aea41;p=friendica.git Fix Introduction user selection --- 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) {