diff --git a/include/functions.php b/include/functions.php index a57c09478..22179e1a4 100644 --- a/include/functions.php +++ b/include/functions.php @@ -320,7 +320,8 @@ // purge orphaned posts in main content table $result = db_query("DELETE FROM ttrss_entries WHERE - id NOT IN (SELECT ref_id FROM ttrss_user_entries WHERE ref_id IS NOT NULL)"); + (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0"); + if ($do_output) { $rows = db_affected_rows($result); _debug("Purged $rows orphaned posts.");