From 060eeb1b5479f09bc0b1a13a6d71f1887ad53d5b Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Wed, 5 Oct 2011 11:47:59 +0200 Subject: [PATCH] changedsince is > not >= :-) --- inc/tz/list.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/tz/list.php b/inc/tz/list.php index 1ed307d7..b3b4c399 100644 --- a/inc/tz/list.php +++ b/inc/tz/list.php @@ -30,7 +30,7 @@ if ( $returnall !== true ) { } if ( !empty($changedsince) ) { if ( !empty($where) ) $where .= ' AND '; - $where .= 'last_modified >= :changedsince'; + $where .= 'last_modified > :changedsince'; $params[':changedsince'] = $changedsince; } if ( !empty($where)) $sql .= ' WHERE '.$where;