summaryrefslogtreecommitdiff
path: root/classes/feeds.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/feeds.php')
-rwxr-xr-xclasses/feeds.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/classes/feeds.php b/classes/feeds.php
index 86dd750ec..eb08fc452 100755
--- a/classes/feeds.php
+++ b/classes/feeds.php
@@ -2352,6 +2352,13 @@ class Feeds extends Handler_Protected {
break;
}
+ if (!$query) {
+ foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_HEADLINES_CUSTOM_SORT_OVERRIDE) as $p) {
+ list ($query, $skip_first_id) = $p->hook_headlines_custom_sort_override($order);
+
+ if ($query) break;
+ }
+ }
return [$query, $skip_first_id];
}
}