From: Andrew Dolgov Date: Mon, 22 Jul 2013 11:21:30 +0000 (+0400) Subject: fix yet another typo with the 2week catchup thing (closes #737) X-Git-Tag: 1.10~70 X-Git-Url: https://git.wh0rd.org/?p=tt-rss.git;a=commitdiff_plain;h=8d476359199e063a4e9ca29608f9d0dcb99d96f9 fix yet another typo with the 2week catchup thing (closes #737) --- diff --git a/include/functions.php b/include/functions.php index 238c017c..ef5905fe 100644 --- a/include/functions.php +++ b/include/functions.php @@ -1062,7 +1062,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 {