From f3d4bae32eae802c717ff36fcaad1f7ee56d2a39 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 26 Feb 2021 09:57:34 +0300 Subject: add an option to disable DISTINCT on headlines query (unless it's Labels category) --- classes/feeds.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'classes/feeds.php') diff --git a/classes/feeds.php b/classes/feeds.php index 7ea9ca474..5423fc617 100755 --- a/classes/feeds.php +++ b/classes/feeds.php @@ -1621,6 +1621,11 @@ class Feeds extends Handler_Protected { $distinct_qpart = "DISTINCT"; //fallback } + // except for Labels category + if (get_pref(Prefs::HEADLINES_NO_DISTINCT) && !($feed == -2 && $cat_view)) { + $distinct_qpart = ""; + } + if (!$search && !$skip_first_id_check) { // if previous topmost article id changed that means our current pagination is no longer valid $query = "SELECT -- cgit v1.2.3-54-g00ecf