From c7079675675a3f9786ebf969626fdba97b5e03bf Mon Sep 17 00:00:00 2001 From: Naomi Date: Wed, 2 Oct 2013 11:25:40 -0400 Subject: [PATCH] CRLF --- airtime_mvc/application/models/Webstream.php | 24 ++++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/airtime_mvc/application/models/Webstream.php b/airtime_mvc/application/models/Webstream.php index c79fa9ca1..693a08146 100644 --- a/airtime_mvc/application/models/Webstream.php +++ b/airtime_mvc/application/models/Webstream.php @@ -412,18 +412,18 @@ class Application_Model_Webstream implements Application_Model_LibraryEditable /* * method is not used, webstreams aren't currently kept track of for isScheduled. */ - public static function setIsScheduled($p_webstreamId, $p_status) { - - $webstream = CcWebstreamQuery::create()->findPK($p_webstreamId); - $updateIsScheduled = false; - - if (isset($webstream) && !in_array($p_webstreamId, - Application_Model_Schedule::getAllFutureScheduledWebstreams())) { - //$webstream->setDbIsScheduled($p_status)->save(); - $updateIsScheduled = true; - } - - return $updateIsScheduled; + public static function setIsScheduled($p_webstreamId, $p_status) { + + $webstream = CcWebstreamQuery::create()->findPK($p_webstreamId); + $updateIsScheduled = false; + + if (isset($webstream) && !in_array($p_webstreamId, + Application_Model_Schedule::getAllFutureScheduledWebstreams())) { + //$webstream->setDbIsScheduled($p_status)->save(); + $updateIsScheduled = true; + } + + return $updateIsScheduled; } }