1
0
mirror of https://github.com/moparisthebest/wallabag synced 2025-01-11 05:38:06 -05:00

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

View File

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