added null to try to fix missing arguments
This commit is contained in:
parent
977b5c002c
commit
6fe75028e3
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue