1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 11:45:56 +00:00

make us of db_affected_rows($result) instead of using db specific functions

This commit is contained in:
Matthias Wirtz
2013-04-17 20:24:07 +02:00
parent fa8e7ea261
commit a08f94bd0e

View File

@@ -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) {