Frontend\Core\Engine\RssItem::setLink PHP Method

    public function setLink($link)
    {
        // redefine var
        $link = (string) $link;
        // if link doesn't start with http, we prepend the URL of the site
        if (mb_substr($link, 0, 7) != 'http://') {
            $link = SITE_URL . $link;
        }
        // call parent
        parent::setLink($link);
    }