binding statement named param instead of positional replacement
This commit is contained in:
parent
2395dc3b04
commit
09be7cdd73
1 changed files with 5 additions and 3 deletions
|
@ -132,12 +132,14 @@ class Digest
|
||||||
ref_id = ttrss_entries.id AND feed_id = ttrss_feeds.id
|
ref_id = ttrss_entries.id AND feed_id = ttrss_feeds.id
|
||||||
AND include_in_digest = true
|
AND include_in_digest = true
|
||||||
AND $interval_qpart
|
AND $interval_qpart
|
||||||
AND ttrss_user_entries.owner_uid = ?
|
AND ttrss_user_entries.owner_uid = :user_id
|
||||||
AND unread = true
|
AND unread = true
|
||||||
AND score >= 0
|
AND score >= 0
|
||||||
ORDER BY ttrss_feed_categories.title, ttrss_feeds.title, score DESC, date_updated DESC
|
ORDER BY ttrss_feed_categories.title, ttrss_feeds.title, score DESC, date_updated DESC
|
||||||
LIMIT ?");
|
LIMIT :limit");
|
||||||
$sth->execute([$user_id, $limit]);
|
$sth->bindParam(':user_id', intval($user_id, 10), \PDO::PARAM_INT);
|
||||||
|
$sth->bindParam(':limit', intval($limit, 10), \PDO::PARAM_INT);
|
||||||
|
$sth->execute();
|
||||||
|
|
||||||
$headlines_count = 0;
|
$headlines_count = 0;
|
||||||
$headlines = array();
|
$headlines = array();
|
||||||
|
|
Loading…
Reference in a new issue