Merge pull request #64 from radiorabe/feature/debian-and-experimental-centos

Vagrant Debian support (and experimental CentOS)
This commit is contained in:
Robb 2017-03-12 21:42:37 -04:00 committed by GitHub
commit a583d8fa1e
19 changed files with 448 additions and 201 deletions

View file

@ -91,7 +91,8 @@ class Application_Service_PodcastService
$podcastArray["language"] = htmlspecialchars($rss->get_language());
$podcastArray["copyright"] = htmlspecialchars($rss->get_copyright());
$name = empty($rss->get_author()) ? "" : $rss->get_author()->get_name();
$author = $rss->get_author();
$name = empty($author) ? "" : $author->get_name();
$podcastArray["creator"] = htmlspecialchars($name);
$categories = array();