From: Andrew Dolgov Date: Mon, 24 Jun 2013 20:11:53 +0000 (+0400) Subject: fix 2week catchup parameter X-Git-Tag: 1.9~96 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=b627f574f833c2f46b2bbe6e7dd24387d5a4ed62;p=tt-rss.git fix 2week catchup parameter --- diff --git a/include/functions.php b/include/functions.php index a6e13ecc..355eec2c 100644 --- a/include/functions.php +++ b/include/functions.php @@ -1059,7 +1059,7 @@ $date_qpart = "date_entered < DATE_SUB(NOW(), INTERVAL 1 WEEK) "; } break; - case "2weeks": + case "2week": if (DB_TYPE == "pgsql") { $date_qpart = "date_entered < NOW() - INTERVAL '2 week' "; } else {