Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/79'
Browse files Browse the repository at this point in the history
Close #79
  • Loading branch information
weierophinney committed Jun 5, 2018
2 parents e70d90d + a9c10d9 commit 2815c29
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file, in reverse chronological order by release.

## 2.10.1 - TBD
## 2.10.1 - 2018-06-05

### Added

Expand All @@ -22,7 +22,8 @@ All notable changes to this project will be documented in this file, in reverse

### Fixed

- Nothing.
- [#79](https://github.com/zendframework/zend-feed/pull/79) fixes an issue in the `setType()` method of the iTunes feed renderer whereby it was setting
the DOM content with an uninitialized variable.

## 2.10.0 - 2018-05-24

Expand Down
2 changes: 1 addition & 1 deletion src/Writer/Extension/ITunes/Renderer/Feed.php
Expand Up @@ -345,7 +345,7 @@ protected function _setType(DOMDocument $dom, DOMElement $root)
return;
}
$el = $dom->createElement('itunes:type');
$text = $dom->createTextNode($summary);
$text = $dom->createTextNode($type);
$el->appendChild($text);
$root->appendChild($el);
$this->called = true;
Expand Down

0 comments on commit 2815c29

Please sign in to comment.