From: Andrew Dolgov Date: Wed, 6 Feb 2008 08:26:15 +0000 (+0100) Subject: publish: get_pref: properly set owner_uid X-Git-Tag: 1.2.20~47 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=7a22dc2ad5f210e13a63c1bccb89ece06005dd7c;p=tt-rss.git publish: get_pref: properly set owner_uid --- diff --git a/functions.php b/functions.php index b85b1025..4af6e3b5 100644 --- a/functions.php +++ b/functions.php @@ -3128,7 +3128,7 @@ } else if ($feed == -3) { // fresh virtual feed $query_strategy_part = "unread = true"; - $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE"); + $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE", $owner_uid); if (DB_TYPE == "pgsql") { $query_strategy_part .= " AND date_entered > NOW() - INTERVAL '$intl hour' "; @@ -3154,7 +3154,7 @@ $query_strategy_part = "id > 0"; // dumb } - if (get_pref($link, 'REVERSE_HEADLINES')) { + if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) { $order_by = "updated"; } else { $order_by = "updated DESC";