From 28a7f57d86c2c2fbef92da37eacb19980a133ed2 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sun, 25 Jan 2015 18:55:11 -0500 Subject: Store due date without the time --- app/Model/TaskExport.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/Model/TaskExport.php') diff --git a/app/Model/TaskExport.php b/app/Model/TaskExport.php index 9545d062..90aa1964 100644 --- a/app/Model/TaskExport.php +++ b/app/Model/TaskExport.php @@ -77,11 +77,11 @@ class TaskExport extends Base '; if (! is_numeric($from)) { - $from = $this->dateParser->resetDateToMidnight($this->dateParser->getTimestamp($from)); + $from = $this->dateParser->removeTimeFromTimestamp($this->dateParser->getTimestamp($from)); } if (! is_numeric($to)) { - $to = $this->dateParser->resetDateToMidnight(strtotime('+1 day', $this->dateParser->getTimestamp($to))); + $to = $this->dateParser->removeTimeFromTimestamp(strtotime('+1 day', $this->dateParser->getTimestamp($to))); } $rq = $this->db->execute($sql, array($from, $to, $project_id)); -- cgit v1.2.3