Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
corrected wrong variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Roumen Damianoff committed Dec 14, 2015
1 parent afd2151 commit 11136e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Roumen/Feed/Feed.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Feed generator class for laravel-feed package.
*
* @author Roumen Damianoff <[email protected]>
* @version 2.9.8
* @version 2.9.9
* @link https://roumen.it/projects/laravel-feed
* @license http://opensource.org/licenses/mit-license.php MIT License
*/
Expand Down Expand Up @@ -137,7 +137,7 @@ public function render($format = null, $cache = null, $key = null)
}

$channel = [
'title' => html_entity_decode(strip_tags($channel['title'])),
'title' => html_entity_decode(strip_tags($this->title)),
'description' => $this->description,
'logo' => $this->logo,
'icon' => $this->icon,
Expand Down

0 comments on commit 11136e3

Please sign in to comment.