summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMatthias Wirtz <[email protected]>2013-04-17 20:24:07 +0200
committerMatthias Wirtz <[email protected]>2013-04-17 20:24:07 +0200
commita08f94bd0e177c4ffaf9211e0e4c3872a68ac35b (patch)
treecf562c6415d08974836dae8fd9f986763a536c39 /include
parentfa8e7ea2613e611a9c532bb923727de352a53b2a (diff)
make us of db_affected_rows($result) instead of using db specific functions
Diffstat (limited to 'include')
-rw-r--r--include/functions.php7
1 files changed, 2 insertions, 5 deletions
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) {