aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/3rdparty/libraries/feedwriter/FeedItem.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2014-04-06 20:53:31 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2014-04-06 20:53:31 +0200
commit7a873ef1d76a26975185afcfd1669b5b024d85ec (patch)
tree42187f3838675593a38b08bb1c4ca632deb363f1 /inc/3rdparty/libraries/feedwriter/FeedItem.php
parent292cd0dbd579961cd43ab8fdedb190a9e4d82e7c (diff)
downloadwallabag-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.php3
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 /**