diff --git a/airtime_mvc/application/controllers/ScheduleController.php b/airtime_mvc/application/controllers/ScheduleController.php index 4a87ace77..84ab1641a 100644 --- a/airtime_mvc/application/controllers/ScheduleController.php +++ b/airtime_mvc/application/controllers/ScheduleController.php @@ -143,13 +143,13 @@ class ScheduleController extends Zend_Controller_Action if($user->isUserType(array(UTYPE_ADMIN, UTYPE_PROGRAM_MANAGER))) { try{ - $show = new Application_Model_ShowInstance($showInstanceId); + $showInstance = new Application_Model_ShowInstance($showInstanceId); }catch(Exception $e){ $this->view->show_error = true; return false; } - $show->deleteShow(); + $showInstance->delete(); } } @@ -821,13 +821,13 @@ class ScheduleController extends Zend_Controller_Action if($user->isUserType(array(UTYPE_ADMIN, UTYPE_PROGRAM_MANAGER))) { $showInstanceId = $this->_getParam('id'); try{ - $show = new Application_Model_ShowInstance($showInstanceId); + $showInstance = new Application_Model_ShowInstance($showInstanceId); }catch(Exception $e){ $this->view->show_error = true; return false; } - $show->clearShow(); - $show->deleteShow(); + $showInstance->clearShow(); + $showInstance->delete(); // send 'cancel-current-show' command to pypo Application_Model_RabbitMq::SendMessageToPypo("cancel_current_show", array()); } diff --git a/airtime_mvc/application/models/Show.php b/airtime_mvc/application/models/Show.php index c0dee3d27..079c34be0 100644 --- a/airtime_mvc/application/models/Show.php +++ b/airtime_mvc/application/models/Show.php @@ -106,7 +106,7 @@ class Application_Model_Show { } //remove everything about this show. - public function deleteShow() + public function delete() { //usually we hide the show-instance, but in this case we are deleting the show template //so delete all show-instances as well. diff --git a/airtime_mvc/application/models/ShowInstance.php b/airtime_mvc/application/models/ShowInstance.php index ab31104b3..e3396b42b 100644 --- a/airtime_mvc/application/models/ShowInstance.php +++ b/airtime_mvc/application/models/ShowInstance.php @@ -435,10 +435,10 @@ class Application_Model_ShowInstance { $this->updateScheduledTime(); } - public function deleteShow() + public function delete() { global $CC_DBC; - + // see if it was recording show $recording = $this->isRecorded(); // get show id @@ -446,10 +446,9 @@ class Application_Model_ShowInstance { $show = $this->getShow(); - $current_timestamp = gmdate("Y-m-d H:i"); - - if ($current_timestamp < $this->getShowInstanceStart()) { + $current_timestamp = gmdate("Y-m-d H:i:s"); + if ($current_timestamp <= $this->getShowInstanceEnd()) { if ($show->isRepeating()) { CcShowInstancesQuery::create() @@ -486,8 +485,7 @@ class Application_Model_ShowInstance { } } else { - - $show->deleteShow(); + $show->delete(); } } diff --git a/airtime_mvc/application/views/scripts/form/stream-setting-form.phtml b/airtime_mvc/application/views/scripts/form/stream-setting-form.phtml index b033c72d5..5de236fe6 100644 --- a/airtime_mvc/application/views/scripts/form/stream-setting-form.phtml +++ b/airtime_mvc/application/views/scripts/form/stream-setting-form.phtml @@ -2,30 +2,30 @@ $s_name = "s".$this->stream_number; ?>

">Stream stream_number?>

-
enabled == 0?'style="display: none;':''?> id="-config"> +
enabled == 0?'style="display: none;':''?> id="-config">
-
+
liquidsoap_error_msg?>
-
- +
+
-
+
element->getElement('enable')?>
-
- +
+
-
+
element->getElement('type')?>
-
- +
+
-
+
element->getElement('bitrate')?>
@@ -54,10 +54,10 @@ -
- +
+
-
+
element->getElement('output')?>
@@ -159,4 +159,4 @@
-
\ No newline at end of file +
diff --git a/airtime_mvc/public/js/airtime/preferences/streamsetting.js b/airtime_mvc/public/js/airtime/preferences/streamsetting.js index 832baf47f..681bf43c0 100644 --- a/airtime_mvc/public/js/airtime/preferences/streamsetting.js +++ b/airtime_mvc/public/js/airtime/preferences/streamsetting.js @@ -81,8 +81,8 @@ function checkLiquidsoapStatus(){ var json_obj = jQuery.parseJSON(json); for(var i=0;i' + html = '

Can not connect to the streaming server

'+status+'

'; } $("#s"+id+"Liquidsoap-error-msg-element").html(html); } @@ -175,4 +175,4 @@ $(document).ready(function() { showErrorSections() setInterval('checkLiquidsoapStatus()', 1000) -}); \ No newline at end of file +}); diff --git a/install_minimal/airtime-install b/install_minimal/airtime-install index a83734b77..5895c6bb5 100755 --- a/install_minimal/airtime-install +++ b/install_minimal/airtime-install @@ -73,7 +73,6 @@ SCRIPTPATH=`dirname $SCRIPT` AIRTIMEROOT=$SCRIPTPATH/../ # Check if airtime exists already -echo "* Checking for existing Airtime installation..." set +e php --php-ini ${SCRIPTPATH}/airtime-php.ini ${SCRIPTPATH}/include/airtime-installed-check.php result=$? diff --git a/install_minimal/include/airtime-installed-check.php b/install_minimal/include/airtime-installed-check.php index 20aee2780..5cbd65b10 100644 --- a/install_minimal/include/airtime-installed-check.php +++ b/install_minimal/include/airtime-installed-check.php @@ -20,7 +20,7 @@ AirtimeInstall::ExitIfNotRoot(); $version = AirtimeInstall::GetVersionInstalled(); // The current version is already installed. -echo "* Checking for existing install of Airtime...".PHP_EOL; +echo "* Checking for existing Airtime installation...".PHP_EOL; if (isset($version)){ if ($version === false){ //version of Airtime older than 1.7.0 detected