Removed trailing whitespace
This commit is contained in:
parent
a1e653b41f
commit
57ef1c20ac
|
@ -671,16 +671,16 @@ SELECT instance_id,
|
||||||
FROM cc_schedule
|
FROM cc_schedule
|
||||||
WHERE ends > :p_start::TIMESTAMP
|
WHERE ends > :p_start::TIMESTAMP
|
||||||
AND starts < :p_end::TIMESTAMP
|
AND starts < :p_end::TIMESTAMP
|
||||||
GROUP BY instance_id;
|
GROUP BY instance_id
|
||||||
SQL;
|
SQL;
|
||||||
|
|
||||||
$counts = Application_Common_Database::prepareAndExecute( $sql, array(
|
$counts = Application_Common_Database::prepareAndExecute( $sql, array(
|
||||||
':p_start' => $p_start->format("Y-m-d G:i:s"),
|
':p_start' => $p_start->format("Y-m-d G:i:s"),
|
||||||
':p_end' => $p_end->format("Y-m-d G:i:s"))
|
':p_end' => $p_end->format("Y-m-d G:i:s"))
|
||||||
, 'all');
|
, 'all');
|
||||||
|
|
||||||
return $counts;
|
return $counts;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function showEmpty()
|
public function showEmpty()
|
||||||
|
|
Loading…
Reference in New Issue