CC-5147 : check builder feed on now playing page updating when not needed

wrong timestamp used when changing to prepared statement.
This commit is contained in:
Naomi 2013-05-14 16:51:34 -04:00
parent 20ef068246
commit 74c0e390b6
1 changed files with 6 additions and 6 deletions

View File

@ -460,12 +460,12 @@ ORDER BY si_starts,
SQL;
$map = array(
":ts_1" => $p_track_start,
":ts_2" => $p_track_end,
":ts_3" => $p_track_start,
":ts_4" => $p_track_end,
":ts_5" => $p_track_start,
":ts_6" => $p_track_end,
":ts_1" => $p_start_str,
":ts_2" => $p_end_str,
":ts_3" => $p_start_str,
":ts_4" => $p_end_str,
":ts_5" => $p_start_str,
":ts_6" => $p_end_str,
);
$paramMap = $paramMap + $map;