Skip to content

Commit

Permalink
#65 opps
Browse files Browse the repository at this point in the history
  • Loading branch information
creecros committed Feb 10, 2021
1 parent 9392d31 commit 43f3a86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Analytics/CustomFieldAnalytics.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ private function getTasks($project_id, $from, $to)
return $this->db
->table(TaskModel::TABLE)
->eq('project_id', $project_id)
->gte('date_creation', strtotime($from))
->lte('date_creation', strtotime($to))
->gte('date_creation', $from)
->lte('date_creation', $to)
->asc('id')
->findAll();
}
Expand Down

0 comments on commit 43f3a86

Please sign in to comment.