cc-4347: ~~~~PDO~~~~~~

This commit is contained in:
Rudi Grinberg 2012-09-06 15:55:29 -04:00
parent 977c664bfe
commit 1852843f96

View file

@ -796,11 +796,11 @@ SQL;
$timestamp = $date->getUtcTimestamp();
$stmt = $con->prepare("UPDATE cc_show_days "
."SET duration = :add_show_duration"
."SET duration = :add_show_duration "
."WHERE show_id = :add_show_id" );
$stmt->execute( array(
':add_show_duration' => $p_data[add_show_duration],
':add_show_id' => $p_data[add_show_id]
':add_show_duration' => $p_data['add_show_duration'],
':add_show_id' => $p_data['add_show_id']
));
$sql = "UPDATE cc_show_instances "