From 6fe75028e334e0c0dcb5474430b387fc5b6bd205 Mon Sep 17 00:00:00 2001 From: Robbt Date: Thu, 4 Jul 2019 10:21:35 -0400 Subject: [PATCH] added null to try to fix missing arguments --- airtime_mvc/application/services/PodcastEpisodeService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/application/services/PodcastEpisodeService.php b/airtime_mvc/application/services/PodcastEpisodeService.php index c6b604563..0d98ae3ab 100644 --- a/airtime_mvc/application/services/PodcastEpisodeService.php +++ b/airtime_mvc/application/services/PodcastEpisodeService.php @@ -111,7 +111,7 @@ class Application_Service_PodcastEpisodeService extends Application_Service_Thir * @throws Exception * @throws PropelException */ - private function _buildEpisode($podcastId, $url, $guid, $publicationDate, $title, $description) { + private function _buildEpisode($podcastId, $url, $guid, $publicationDate, $title = NULL, $description = NULL) { $e = new PodcastEpisodes(); $e->setDbPodcastId($podcastId); $e->setDbDownloadUrl($url);