Skip to content
Snippets Groups Projects

Fix PHP warnings when generating a podcast with no Podcasting 2.0 elements set

Open kenwest requested to merge issue/podcast-3497084:3497084-php-warnings into 8.x-1.x
1 unresolved thread

Fix PHP warnings when generating a podcast with no Podcasting 2.0 elements set

Closes #3497084

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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'] ?? '',
Please register or sign in to reply
Loading