Fix PHP warnings when generating a podcast with no Podcasting 2.0 elements set
1 unresolved thread
Fix PHP warnings when generating a podcast with no Podcasting 2.0 elements set
Closes #3497084
Merge request reports
Activity
added 1 commit
- e1150d5f - Rss::buildOptionsForm() - not all $form elements have a '#type'
290 290 } 291 291 $item->elements[] = [ 292 292 'key' => 'podcast:season', 293 'value' => $this->buildElementFromOptions('itunes:season', $row_index)['value'], 293 'value' => $this->buildElementFromOptions('podcast:season', $row_index)['value'] ?? '', 294 294 ]; 295 295 $item->elements[] = [ 296 296 'key' => 'podcast:episode', 297 'value' => $this->buildElementFromOptions('itunes:episode', $row_index)['value'], 297 'value' => $this->buildElementFromOptions('podcast:episode', $row_index)['value'] ?? '', Why the change from
itunes
topodcast
?Edited by Rodrigo Aguilera
Please register or sign in to reply