Skip to content
Permalink
Browse files Browse the repository at this point in the history
fixed 23026: link attribute
  • Loading branch information
alex40724 committed May 11, 2018
1 parent 7f2e7fa commit ff9bf29
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Services/Feeds/classes/class.ilExternalFeedItem.php
Expand Up @@ -32,17 +32,16 @@ function setMagpieItem($a_item)
if (isset($a_item["link_"]))
{
$this->setLink(
ilUtil::secureLink($this->secureString($a_item["link_"])));
ilUtil::secureUrl(ilUtil::secureLink($this->secureString($a_item["link_"]))));
}
else
{
if (isset($a_item["link"]))
{
$this->setLink(
ilUtil::secureLink($this->secureString($a_item["link"])));
ilUtil::secureUrl(ilUtil::secureLink($this->secureString($a_item["link"]))));
}
}

// summary
if (isset($a_item["atom_content"]))
{
Expand Down

0 comments on commit ff9bf29

Please sign in to comment.