Refactored sql substition into pdo
This commit is contained in:
parent
a731fc147b
commit
27ea00f5d4
|
@ -1620,12 +1620,17 @@ class Application_Model_Show
|
|||
$startTimeString = $today_timestamp->format("Y-m-d H:i:s");
|
||||
}
|
||||
|
||||
$sql = "SELECT * FROM cc_show_days
|
||||
WHERE last_show IS NULL
|
||||
OR first_show < '{$endTimeString}' AND last_show > '{$startTimeString}'";
|
||||
$con->prepare("
|
||||
SELECT * FROM cc_show_days
|
||||
WHERE last_show IS NULL
|
||||
OR first_show < :endTimeString AND last_show > :startTimeString");
|
||||
|
||||
//Logging::info($sql);
|
||||
$res = $con->query($sql)->fetchAll();
|
||||
$stmt = $con->execute(array(
|
||||
':endTimeString' => $endTimeString,
|
||||
':startTimeString' => $startTimeString
|
||||
));
|
||||
|
||||
$res = $stm->fetchAll();
|
||||
foreach ($res as $row) {
|
||||
Application_Model_Show::populateShow($row, $p_endTimestamp);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue