summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-06-25 00:11:53 +0400
committerAndrew Dolgov <[email protected]>2013-06-25 00:11:53 +0400
commitb627f574f833c2f46b2bbe6e7dd24387d5a4ed62 (patch)
treeb9814b9cf7d8419e90720fb7e5ced3d64b5b9a2e /include
parent1ed69dc5f5874a6722f29c141e965366290c6391 (diff)
fix 2week catchup parameter
Diffstat (limited to 'include')
-rw-r--r--include/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions.php b/include/functions.php
index a6e13ecc8..355eec2cd 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 {