Coding standards

This commit is contained in:
Michael 2021-11-25 11:31:01 +00:00
parent 1ff6b1cf18
commit 68316c6e85

View File

@ -68,6 +68,7 @@ class Tweets extends BaseApi
if (preg_match('/^#(\w+)$/', $searchTerm, $matches) === 1 && isset($matches[1])) {
$searchTerm = $matches[1];
$condition = ["`iid` > ? AND `name` = ? AND (NOT `private` OR (`private` AND `uid` = ?))", $since_id, $searchTerm, $uid];
$tags = DBA::select('tag-search-view', ['uri-id'], $condition);
$uriids = [];
while ($tag = DBA::fetch($tags)) {