Merge pull request #837 from Robbt/fix_podcast_publish
added null to try to solve missing arguments bug for Podcast Publish function
This commit is contained in:
commit
26df390418
|
@ -111,7 +111,7 @@ class Application_Service_PodcastEpisodeService extends Application_Service_Thir
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
* @throws PropelException
|
* @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 = new PodcastEpisodes();
|
||||||
$e->setDbPodcastId($podcastId);
|
$e->setDbPodcastId($podcastId);
|
||||||
$e->setDbDownloadUrl($url);
|
$e->setDbDownloadUrl($url);
|
||||||
|
|
Loading…
Reference in New Issue