Output itunes:email to satisfy Spotify.
This commit is contained in:
parent
85ece3cc4b
commit
c2c0fefa43
@ -9,5 +9,8 @@ time_zone = "America/Chicago"
|
||||
managing_editor = "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)
|
||||
caching_ttl = 60
|
||||
|
@ -99,6 +99,11 @@ class RSSGenerator
|
||||
$channel->appendChild($dom->createElement('webMaster', $this->global_conf['config']['webmaster']));
|
||||
$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');
|
||||
$days_on = explode(',', $this->show_conf['show']['schedule_days']);
|
||||
if (!in_array('Mo', $days_on)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user