Output itunes:email to satisfy Spotify.

This commit is contained in:
Markus Birth 2020-02-29 00:32:10 +01:00
parent 85ece3cc4b
commit c2c0fefa43
Signed by: mbirth
GPG Key ID: A9928D7A098C3A9A
2 changed files with 8 additions and 0 deletions

View File

@ -9,5 +9,8 @@ time_zone = "America/Chicago"
managing_editor = "markus@birth-online.de (Markus Birth)" managing_editor = "markus@birth-online.de (Markus Birth)"
webmaster = "markus@birth-online.de (Markus Birth)" webmaster = "markus@birth-online.de (Markus Birth)"
itunes_owner_name = "Markus Birth"
itunes_owner_email = "markus@birth-online.de"
; How long before sites may refetch RSS (minutes) ; How long before sites may refetch RSS (minutes)
caching_ttl = 60 caching_ttl = 60

View File

@ -99,6 +99,11 @@ class RSSGenerator
$channel->appendChild($dom->createElement('webMaster', $this->global_conf['config']['webmaster'])); $channel->appendChild($dom->createElement('webMaster', $this->global_conf['config']['webmaster']));
$channel->appendChild($dom->createElement('ttl', $this->global_conf['config']['caching_ttl'])); $channel->appendChild($dom->createElement('ttl', $this->global_conf['config']['caching_ttl']));
$i_owner = $dom->createElement('itunes:owner');
$i_owner->appendChild($dom->createElement('itunes:name', $this->global_conf['config']['itunes_owner_name']));
$i_owner->appendChild($dom->createElement('itunes:email', $this->global_conf['config']['itunes_owner_email']));
$channel->appendChild($i_owner);
$skipDays = $dom->createElement('skipDays'); $skipDays = $dom->createElement('skipDays');
$days_on = explode(',', $this->show_conf['show']['schedule_days']); $days_on = explode(',', $this->show_conf['show']['schedule_days']);
if (!in_array('Mo', $days_on)) { if (!in_array('Mo', $days_on)) {