Merge branch 'master' of Greg-T/tt-rss into master

This commit is contained in:
fox 2019-03-29 03:52:15 +00:00 committed by Gogs
commit cb0c81729d
1 changed files with 2 additions and 1 deletions

View File

@ -2206,7 +2206,8 @@
FROM ttrss_tags, ttrss_user_entries, ttrss_entries
WHERE post_int_id = int_id AND $interval_query AND
ref_id = ttrss_entries.id AND tag_cache != '' LIMIT ?");
$sth->execute([$limit]);
$sth->bindValue(1, $limit_part, PDO::PARAM_INT);
$sth->execute();
$ids = array();