diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2014-04-06 20:53:31 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2014-04-06 20:53:31 +0200 |
commit | 7a873ef1d76a26975185afcfd1669b5b024d85ec (patch) | |
tree | 42187f3838675593a38b08bb1c4ca632deb363f1 /inc/3rdparty/libraries/feedwriter/FeedItem.php | |
parent | 292cd0dbd579961cd43ab8fdedb190a9e4d82e7c (diff) | |
download | wallabag-7a873ef1d76a26975185afcfd1669b5b024d85ec.tar.gz wallabag-7a873ef1d76a26975185afcfd1669b5b024d85ec.tar.zst wallabag-7a873ef1d76a26975185afcfd1669b5b024d85ec.zip |
remove unnecessary variable declaration
Diffstat (limited to 'inc/3rdparty/libraries/feedwriter/FeedItem.php')
-rw-r--r-- | inc/3rdparty/libraries/feedwriter/FeedItem.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/inc/3rdparty/libraries/feedwriter/FeedItem.php b/inc/3rdparty/libraries/feedwriter/FeedItem.php index 7e467ce8..3487423f 100644 --- a/inc/3rdparty/libraries/feedwriter/FeedItem.php +++ b/inc/3rdparty/libraries/feedwriter/FeedItem.php | |||
@@ -101,8 +101,7 @@ | |||
101 | */ | 101 | */ |
102 | public function setDescription($description) | 102 | public function setDescription($description) |
103 | { | 103 | { |
104 | $tag = 'description'; | 104 | $this->setElement('description', $description); |
105 | $this->setElement($tag, $description); | ||
106 | } | 105 | } |
107 | 106 | ||
108 | /** | 107 | /** |