diff --git a/src/Torann/PodcastFeed/Manager.php b/src/Torann/PodcastFeed/Manager.php index e11d0fb..ac28f6a 100755 --- a/src/Torann/PodcastFeed/Manager.php +++ b/src/Torann/PodcastFeed/Manager.php @@ -261,19 +261,19 @@ private function generate() $channel->appendChild($itune_owner); // Create the - if ($this->category !== null) { + if ($this->category != null) { $category = $dom->createElement("itunes:category", $this->category); $channel->appendChild($category); } // Create the - if ($this->language !== null) { + if ($this->language != null) { $language = $dom->createElement("language", $this->language); $channel->appendChild($language); } // Create the - if ($this->copyright !== null) { + if ($this->copyright != null) { $copyright = $dom->createElement("copyright", $this->copyright); $channel->appendChild($copyright); }