Removed unused optional argument.

This commit is contained in:
Rudi Grinberg 2012-09-07 16:26:05 -04:00
parent 8f3c7e8eba
commit 87787081ce
3 changed files with 27 additions and 24 deletions

View file

@ -88,7 +88,7 @@ class Application_Model_RabbitMq
$temp['server_timezone'] = Application_Model_Preference::GetTimezone();
if ($event_type == "update_recorder_schedule") {
$temp['shows'] = Application_Model_Show::getShows($now,
$end_timestamp, $excludeInstance=NULL, $onlyRecord=TRUE);
$end_timestamp, $onlyRecord=TRUE);
}
$data = json_encode($temp);
$msg = new AMQPMessage($data, array('content_type' => 'text/plain'));