CC-2956: Undefined variable: endDateTime in

/usr/share/airtime/application/models/Show.php on line 807,
referer: http://localhost/Schedule

- fixed
This commit is contained in:
James 2011-10-11 16:36:01 -04:00
parent 42d2393bdd
commit 20e9002310
4 changed files with 14 additions and 6 deletions

View file

@ -75,7 +75,7 @@ class Application_Model_RabbitMq
$channel->exchange_declare($EXCHANGE, 'direct', false, true);
$now = new DateTime("@".time());
$end_timestamp = new DateTime("@".time() + 3600*2);
$end_timestamp = new DateTime("@".(time() + 3600*2));
$temp['event_type'] = $event_type;
$temp['server_timezone'] = Application_Model_Preference::GetTimezone();