Fixed typo

This commit is contained in:
Rudi Grinberg 2012-09-12 12:18:06 -04:00
parent 195008d1e4
commit 7f9642dcd2
1 changed files with 2 additions and 2 deletions

View File

@ -976,8 +976,8 @@ WHERE date(starts) = date(:timestamp::TIMESTAMP)
SQL;
try {
$row = Application_Common_Database::prepareAndExecute( $sql,
array( 'showId' => $this->getId(),
':timestamp' => $timestamp ), 'column');
array( ':showId' => $this->getId(),
':timestamp' => $timestamp ), 'column');
return CcShowInstancesQuery::create()
->findPk($row);
} catch (Exception $e) {