Merge pull request #162 from swiffer/master
make us of db_affected_rows($result) instead of using db specific functions
This commit is contained in:
commit
6b7bc706f3
1 changed files with 2 additions and 5 deletions
|
@ -223,8 +223,6 @@
|
|||
ttrss_entries.date_updated < NOW() - INTERVAL '$purge_interval days'");
|
||||
}
|
||||
|
||||
$rows = pg_affected_rows($result);
|
||||
|
||||
} else {
|
||||
|
||||
/* $result = db_query("DELETE FROM ttrss_user_entries WHERE
|
||||
|
@ -239,11 +237,10 @@
|
|||
feed_id = '$feed_id' AND
|
||||
$query_limit
|
||||
ttrss_entries.date_updated < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)");
|
||||
|
||||
$rows = mysql_affected_rows();
|
||||
|
||||
}
|
||||
|
||||
$rows = db_affected_rows($result);
|
||||
|
||||
ccache_update($feed_id, $owner_uid);
|
||||
|
||||
if ($debug) {
|
||||
|
|
Loading…
Reference in a new issue