Fix for #664 - Missing source url attribute in RSS feeds

This commit is contained in:
tcit 2014-04-24 09:39:50 +02:00
parent 8af31ae0f7
commit ef17914960
1 changed files with 2 additions and 1 deletions

View File

@ -174,7 +174,8 @@
*/
public function setSource($link)
{
$this->setElement('source', $link);
$attributes = array('url'=>$link);
$this->setElement('source', "wallabag",$attributes);
}
/**