From a08f94bd0e177c4ffaf9211e0e4c3872a68ac35b Mon Sep 17 00:00:00 2001 From: Matthias Wirtz Date: Wed, 17 Apr 2013 20:24:07 +0200 Subject: make us of db_affected_rows($result) instead of using db specific functions --- include/functions.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'include/functions.php') diff --git a/include/functions.php b/include/functions.php index 66d5896d1..8215127de 100644 --- a/include/functions.php +++ b/include/functions.php @@ -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) { -- cgit v1.2.3