Skip to content
This repository has been archived by the owner on Sep 10, 2021. It is now read-only.

Commit

Permalink
Merge pull request #175 from midasplatform/analysis-XVrG4K
Browse files Browse the repository at this point in the history
Applied fixes from StyleCI
  • Loading branch information
cpatrick committed Feb 1, 2016
2 parents 3f38056 + 42641ce commit 1fd6494
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/tracker/models/pdo/SubmissionModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public function getLatestSubmissionByProducerDateAndBranch($producerDao, $date =
if ($date) {
$queryTime = date('Y-m-d H:i:s', strtotime($date));
} else {
$queryTime = date('Y-m-d', time()) . '23:59:59';
$queryTime = date('Y-m-d', time()).'23:59:59';
}
$dayBeforeQueryTime = date('Y-m-d H:i:s', strtotime($queryTime) - self::SEC_IN_DAY);
$sql = $this->database->select()->setIntegrityCheck(false)
Expand Down

0 comments on commit 1fd6494

Please sign in to comment.