* SAAS-1212 - fix validation errors in station podcast rss

* Append podcast title to heading in episodes view
This commit is contained in:
Duncan Sommerville 2015-11-17 12:26:21 -05:00
parent 041adb5c1f
commit c12848b2de
5 changed files with 16 additions and 5 deletions

View file

@ -237,7 +237,8 @@ class PodcastTask implements AirtimeTask {
* @return bool true if the podcast polling interval has passed
*/
public function shouldBeRun() {
return PodcastManager::hasPodcastPollIntervalPassed();
$overQuota = Application_Model_Systemstatus::isDiskOverQuota();
return !$overQuota && PodcastManager::hasPodcastPollIntervalPassed();
}
/**