summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-07-22 15:21:30 +0400
committerAndrew Dolgov <[email protected]>2013-07-22 15:21:30 +0400
commit8d476359199e063a4e9ca29608f9d0dcb99d96f9 (patch)
tree04908385483de12da3c3a9cbe82e7c7f359893e6
parent7543f0561268f92a4eb860606e80cb108f2be4a9 (diff)
fix yet another typo with the 2week catchup thing (closes #737)
-rw-r--r--include/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions.php b/include/functions.php
index 238c017c5..ef5905fe2 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 {