CC-2833: Use ClassLoaders for PHP Files

-shows.php
This commit is contained in:
martin 2011-09-23 10:54:20 -04:00
parent 5d7b51dafc
commit 9bb901945e
12 changed files with 68 additions and 68 deletions

View file

@ -79,7 +79,7 @@ class RabbitMq
$temp['event_type'] = $event_type;
if($event_type = "update_schedule"){
$temp['shows'] = Show::getShows($now->format("Y-m-d H:i:s"), $end_timestamp->format("Y-m-d H:i:s"), $excludeInstance=NULL, $onlyRecord=TRUE);
$temp['shows'] = Application_Model_Show::getShows($now->format("Y-m-d H:i:s"), $end_timestamp->format("Y-m-d H:i:s"), $excludeInstance=NULL, $onlyRecord=TRUE);
}
$data = json_encode($temp);
$msg = new AMQPMessage($data, array('content_type' => 'text/plain'));