mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-27 11:22:17 -05:00
remove unnecessary variable declaration
This commit is contained in:
parent
292cd0dbd5
commit
7a873ef1d7
@ -101,8 +101,7 @@
|
||||
*/
|
||||
public function setDescription($description)
|
||||
{
|
||||
$tag = 'description';
|
||||
$this->setElement($tag, $description);
|
||||
$this->setElement('description', $description);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -191,10 +191,9 @@ define('JSONP', 3, true);
|
||||
* @param srting value of 'description' channel tag
|
||||
* @return void
|
||||
*/
|
||||
public function setDescription($desciption)
|
||||
public function setDescription($description)
|
||||
{
|
||||
$tag = 'description';
|
||||
$this->setChannelElement($tag, $desciption);
|
||||
$this->setChannelElement('description', $description);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user